From 7c815ae11f3cfc98216d60eb0dca2bad0df9721b Mon Sep 17 00:00:00 2001 From: Vincent Fazio <vfazio@gmail.com> Date: Sat, 14 Sep 2024 13:33:52 -0500 Subject: [PATCH] bindings: python: fix Chip.request_lines() typing The output_values argument was typed as a dict of tuples, however, the code expects a dict of int|str. Fixes: 27a69b0bfd4b ("bindings: python: add the output_values argument to Chip.request_lines()") Closes: https://github.com/brgl/libgpiod/issues/96 Signed-off-by: Vincent Fazio <vfazio@gmail.com> Link: https://lore.kernel.org/r/20240914183352.16090-1-vfazio@gmail.com Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> --- bindings/python/gpiod/chip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/gpiod/chip.py b/bindings/python/gpiod/chip.py index 7692ba4..0a5ac6d 100644 --- a/bindings/python/gpiod/chip.py +++ b/bindings/python/gpiod/chip.py @@ -226,7 +226,7 @@ class Chip: config: dict[tuple[Union[int, str]], Optional[LineSettings]], consumer: Optional[str] = None, event_buffer_size: Optional[int] = None, - output_values: Optional[dict[tuple[Union[int, str]], Value]] = None, + output_values: Optional[dict[Union[int, str], Value]] = None, ) -> LineRequest: """ Request a set of lines for exclusive usage. -- 2.30.2