J. Nick Koston 2 anni fa
parent
commit
28acab7391
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  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."""