aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBartosz Golaszewski <bgolaszewski@baylibre.com>2019-02-15 13:16:57 +0100
committerBartosz Golaszewski <bgolaszewski@baylibre.com>2019-02-15 13:16:57 +0100
commitaa1eb7e6ebfa0840a991a4c32d975aae7773cfa8 (patch)
tree331d48bcec4f55148e616fcfe07fc4eea61ab5eb
parent146f2bbafc4dfa04d68b8d12dfd6c59ea733c28e (diff)
downloadlibgpiod-aa1eb7e6ebfa0840a991a4c32d975aae7773cfa8.tar.gz
bindings: python: fix argument alignment in a function call
When breaking a line, the arguments should be aligned with the opening bracket of the function call. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
-rw-r--r--bindings/python/gpiodmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/gpiodmodule.c b/bindings/python/gpiodmodule.c
index fb1243f2..e6ac3a67 100644
--- a/bindings/python/gpiodmodule.c
+++ b/bindings/python/gpiodmodule.c
@@ -421,7 +421,7 @@ static PyObject *gpiod_Line_request(gpiod_LineObject *self,
return NULL;
ret = gpiod_CallMethodPyArgs((PyObject *)bulk_obj,
- "request", args, kwds);
+ "request", args, kwds);
Py_DECREF(bulk_obj);
return ret;