Explorar el Código

return correct value from switchbot

Daniel Høyer Iversen hace 6 años
padre
commit
51b43c2522
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      switchbot/__init__.py

+ 1 - 1
switchbot/__init__.py

@@ -31,7 +31,7 @@ class Switchbot:
             _LOGGER.error("Cannot connect to switchbot.", exc_info=True)
             if retry < 1:
                 return False
-            self._sendpacket(key, retry-1)
+            return self._sendpacket(key, retry-1)
         return True
 
     def turn_on(self) -> None: