bindings: python: fix argument alignment in a function call
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Fri, 15 Feb 2019 12:16:57 +0000 (13:16 +0100)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Fri, 15 Feb 2019 12:16:57 +0000 (13:16 +0100)
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>
bindings/python/gpiodmodule.c

index fb1243f2455e2bd91f60651322e9998fb9771756..e6ac3a67c368adadaee6a57672556f5a281fe666 100644 (file)
@@ -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;