diff options
author | Maxim Devaev <[email protected]> | 2024-05-18 14:33:59 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2024-05-18 14:33:59 +0300 |
commit | 01fff2c7a9404c963800b2df43debb816ad89874 (patch) | |
tree | a07fcb6526604b6feaab126df3fb5d0b8e828c8f | |
parent | d14757e107215219165e2894c197e6ad563a7d61 (diff) |
lint fix
-rw-r--r-- | kvmd/plugins/hid/spi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/plugins/hid/spi.py b/kvmd/plugins/hid/spi.py index 70ad120b..278e68e1 100644 --- a/kvmd/plugins/hid/spi.py +++ b/kvmd/plugins/hid/spi.py @@ -120,7 +120,7 @@ class _SpiPhy(BasePhy): # pylint: disable=too-many-instance-attributes return os.path.exists(f"/dev/spidev{self.__bus}.{self.__chip}") @contextlib.contextmanager - def connected(self) -> Generator[_SpiPhyConnection, None, None]: # type: ignore + def connected(self) -> Generator[_SpiPhyConnection, None, None]: # pylint: disable=contextmanager-generator-missing-cleanup # type: ignore with self.__sw_cs_connected() as switch_cs: with contextlib.closing(spidev.SpiDev(self.__bus, self.__chip)) as spi: spi.mode = 0 |