J. Nick Koston 2 年之前
父節點
當前提交
28acab7391
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      switchbot/devices/device.py

+ 3 - 3
switchbot/devices/device.py

@@ -158,9 +158,9 @@ class SwitchbotDevice:
         """Reset disconnect timer."""
         if self._disconnect_timer:
             self._disconnect_timer.cancel()
-            self._disconnect_timer = self.loop.call_later(
-                DISCONNECT_DELAY, self._disconnect
-            )
+        self._disconnect_timer = self.loop.call_later(
+            DISCONNECT_DELAY, self._disconnect
+        )
 
     def _disconnect(self):
         """Disconnect from device."""