don't update state in turn_on/off

This commit is contained in:
happyleaves 2015-11-15 08:58:15 -05:00
parent 86b9ae9566
commit 12bdc39274

View File

@ -64,7 +64,6 @@ class S20Switch(SwitchDevice):
""" Turn the device on. """
try:
self._s20.on = True
self._state = True
except S20Exception:
_LOGGER.exception("Error while turning on S20")
@ -72,6 +71,5 @@ class S20Switch(SwitchDevice):
""" Turn the device off. """
try:
self._s20.on = False
self._state = False
except S20Exception:
_LOGGER.exception("Error while turning off S20")