瀏覽代碼

Merge branch 'master' of https://github.com/dcmeglio/pySwitchbot

Dominick Meglio 1 年之前
父節點
當前提交
984d861027
共有 1 個文件被更改,包括 3 次插入4 次删除
  1. 3 4
      switchbot/devices/curtain.py

+ 3 - 4
switchbot/devices/curtain.py

@@ -249,11 +249,10 @@ class SwitchbotCurtain(SwitchbotDevice):
         # To get actual light level call update() first.
         return self._get_adv_value("calibration")
 
-    @property
-    def is_opening(self) -> Any:
+    def is_opening(self) -> bool:
         """Return True if the curtain is opening."""
         return self._is_opening
-    @property
-    def is_closing(self) -> Any:
+    
+    def is_closing(self) -> bool:
         """Return True if the curtain is closing."""
         return self._is_closing