From 576c806e86964d8bcb8dcec0f7a62e008512c8f7 Mon Sep 17 00:00:00 2001 From: Erik Eriksson <8228319+molobrakos@users.noreply.github.com> Date: Mon, 11 Jun 2018 15:29:04 +0200 Subject: [PATCH] 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 --- homeassistant/components/mqtt_eventstream.py | 1 - 1 file changed, 1 deletion(-) diff --git a/homeassistant/components/mqtt_eventstream.py b/homeassistant/components/mqtt_eventstream.py index aa670578172..ea4463f5c23 100644 --- a/homeassistant/components/mqtt_eventstream.py +++ b/homeassistant/components/mqtt_eventstream.py @@ -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