Fix is_on test for Tesla Charger switch (#42251)

closes #41755
This commit is contained in:
Alan Tse 2020-10-23 04:17:10 -07:00 committed by GitHub
parent 3f623ad453
commit 20c43df768
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,6 @@
import logging
from homeassistant.components.switch import SwitchEntity
from homeassistant.const import STATE_ON
from . import DOMAIN as TESLA_DOMAIN, TeslaDevice
@ -42,7 +41,7 @@ class ChargerSwitch(TeslaDevice, SwitchEntity):
"""Get whether the switch is in on state."""
if self.tesla_device.is_charging() is None:
return None
return self.tesla_device.is_charging() == STATE_ON
return self.tesla_device.is_charging()
class RangeSwitch(TeslaDevice, SwitchEntity):