Kaynağa Gözat

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

Dominick Meglio 1 yıl önce
ebeveyn
işleme
984d861027
1 değiştirilmiş dosya ile 3 ekleme ve 4 silme
  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