From 746ba66cfda4bbcff9004b148a5789f00ccca43e Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Wed, 13 Nov 2024 12:29:04 +0100 Subject: [PATCH] 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 --- bindings/python/gpiod/chip.py | 1 - 1 file changed, 1 deletion(-) 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" -- 2.30.2