From aa1eb7e6ebfa0840a991a4c32d975aae7773cfa8 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Fri, 15 Feb 2019 13:16:57 +0100 Subject: [PATCH] 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 --- bindings/python/gpiodmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/gpiodmodule.c b/bindings/python/gpiodmodule.c index fb1243f..e6ac3a6 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; -- 2.30.2