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

+ 1 - 1
switchbot/devices/device.py

@@ -91,7 +91,7 @@ class SwitchbotDevice:
         self._disconnect_timer: asyncio.TimerHandle | None = None
         self._expected_disconnect = False
         self.loop = asyncio.get_event_loop()
-        self._callbacks = list[Callable[[], None]] = []
+        self._callbacks: list[Callable[[], None]] = []
 
     def _commandkey(self, key: str) -> str:
         """Add password to key if set."""