summaryrefslogtreecommitdiff
path: root/kvmd/plugins/msd
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2020-09-13 17:19:57 +0300
committerDevaev Maxim <[email protected]>2020-09-13 17:19:57 +0300
commit41223fa8b24be7978f320781c4b0e3d7b2347c75 (patch)
tree1841f30ae84f61e96b96a91d018d2a7ea85f523c /kvmd/plugins/msd
parent002823b6e1ae6a261e77ee83b358307c682ce65a (diff)
pass close()
Diffstat (limited to 'kvmd/plugins/msd')
-rw-r--r--kvmd/plugins/msd/relay.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/kvmd/plugins/msd/relay.py b/kvmd/plugins/msd/relay.py
index 07e9f85e..64eab56e 100644
--- a/kvmd/plugins/msd/relay.py
+++ b/kvmd/plugins/msd/relay.py
@@ -183,7 +183,10 @@ class _Gpio:
def close(self) -> None:
if self.__chip:
- self.__chip.close()
+ try:
+ self.__chip.close()
+ except Exception:
+ pass
def switch_to_local(self) -> None:
assert self.__target_line