Update mqtt_eventstream.py (#14923)

* Update mqtt_eventstream.py

Remove a line setting an internal state mqtt_eventstream.initialized to True since:
1. No other platform is doing this
2. This will create an annoying entity/item in the user interface which the user will have to explicitly hide

* Update mqtt_eventstream.py
This commit is contained in:
Erik Eriksson 2018-06-11 15:29:04 +02:00 committed by Fabian Affolter
parent 1c561eaf0d
commit 576c806e86

View file

@ -116,5 +116,4 @@ def async_setup(hass, config):
if sub_topic:
yield from mqtt.async_subscribe(sub_topic, _event_receiver)
hass.states.async_set('{domain}.initialized'.format(domain=DOMAIN), True)
return True