Browse Source

Device: use correct boolean value

Jason Rumney 1 year ago
parent
commit
4db298c997
1 changed files with 2 additions and 2 deletions
  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