Explorar o código

Device: use correct boolean value

Jason Rumney hai 1 ano
pai
achega
4db298c997
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      custom_components/tuya_local/device.py

+ 2 - 2
custom_components/tuya_local/device.py

@@ -254,9 +254,9 @@ class TuyaLocalDevice(object):
 
     def pause(self):
         self._temporary_poll = True
-        self._api.setSocketPersistent(false)
+        self._api.setSocketPersistent(False)
         if self._api.parent:
-            self._api.parent.setSocketPersistent(false)
+            self._api.parent.setSocketPersistent(False)
 
     def resume(self):
         self._temporary_poll = False