bindings: python: make vals in gpiod_Line_set_value consistent with other functions
authorKent Gibson <warthog618@gmail.com>
Sun, 1 Dec 2019 03:24:07 +0000 (11:24 +0800)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Tue, 10 Dec 2019 15:43:09 +0000 (16:43 +0100)
commit3e30364cc1a641dcef7f385842f683be8ba74c6f
treec12c5ca75ec0db6808e1fad40086235030fcd077
parent8b487dbcad0acfcb1b5b6d7d6bb46ffe8d979964
bindings: python: make vals in gpiod_Line_set_value consistent with other functions

Change the vals in gpiod_Line_set_value from a tuple of tuples to just a
tuple. This brings it into line with other vals in the module such as
gpiod_Line_set_config and gpiod_Line_set_direction_output.

The previous usage made the vals equivalent to an args (a tuple of
arguments equivalent to argc,argv in C), as per gpiod_Line_set_flags.

Renaming vals to args in gpiod_Line_set_value was not an option as there
is already an args parameter.

Signed-off-by: Kent Gibson <warthog618@gmail.com>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
bindings/python/gpiodmodule.c