From: Bartosz Golaszewski Date: Wed, 13 Nov 2024 11:29:04 +0000 (+0100) Subject: bindings: python: chip: remove unused import X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=746ba66cfda4bbcff9004b148a5789f00ccca43e;p=qemu-gpiodev%2Flibgpiod.git bindings: python: chip: remove unused import We no longer use the select module directly in chip.py so drop the unneeded import. Signed-off-by: Bartosz Golaszewski --- diff --git a/bindings/python/gpiod/chip.py b/bindings/python/gpiod/chip.py index 0a5ac6d..92a7314 100644 --- a/bindings/python/gpiod/chip.py +++ b/bindings/python/gpiod/chip.py @@ -14,7 +14,6 @@ from collections import Counter from collections.abc import Iterable from datetime import timedelta from errno import ENOENT -from select import select from typing import Union, Optional __all__ = "Chip"