Merge pull request #26463 from home-assistant/rc

0.98.4
pull/26681/head 0.98.4
Paulus Schoutsen 2019-09-05 22:19:39 -07:00 committed by GitHub
commit b870980456
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 7 deletions

View File

@ -26,12 +26,11 @@ class TuyaSwitch(TuyaDevice, SwitchDevice):
"""Init Tuya switch device."""
super().__init__(tuya)
self.entity_id = ENTITY_ID_FORMAT.format(tuya.object_id())
self._is_on = False
@property
def is_on(self):
"""Return true if switch is on."""
return self._is_on
return self.tuya.state()
def turn_on(self, **kwargs):
"""Turn the switch on."""
@ -40,7 +39,3 @@ class TuyaSwitch(TuyaDevice, SwitchDevice):
def turn_off(self, **kwargs):
"""Turn the device off."""
self.tuya.turn_off()
def update(self):
"""Update switch device."""
self._is_on = self.tuya.state()

View File

@ -2,7 +2,7 @@
"""Constants used by Home Assistant components."""
MAJOR_VERSION = 0
MINOR_VERSION = 98
PATCH_VERSION = "3"
PATCH_VERSION = "4"
__short_version__ = "{}.{}".format(MAJOR_VERSION, MINOR_VERSION)
__version__ = "{}.{}".format(__short_version__, PATCH_VERSION)
REQUIRED_PYTHON_VER = (3, 6, 0)