Do not call update() in constructor (#7912)

* Do not call update() in constructor

* Do not call update() in constructor

* Remove unused import
This commit is contained in:
Fabian Affolter
2017-06-05 17:35:26 +02:00
committed by GitHub
parent 2b850f417e
commit 13df925795
12 changed files with 29 additions and 44 deletions

View File

@@ -36,7 +36,6 @@ def async_setup_platform(hass, config, async_add_devices, discovery_info=None):
time_zone = dt_util.get_time_zone(config.get(CONF_TIME_ZONE))
async_add_devices([WorldClockSensor(time_zone, name)], True)
return True
class WorldClockSensor(Entity):