From 5def51835eb98ec11dc19276fcd678f6cd2bd958 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Fri, 20 Dec 2019 17:10:04 +0000 Subject: [PATCH] Fix v2 --- homeassistant/components/deconz/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/deconz/config_flow.py b/homeassistant/components/deconz/config_flow.py index ce890cd0103..c2035d61d6e 100644 --- a/homeassistant/components/deconz/config_flow.py +++ b/homeassistant/components/deconz/config_flow.py @@ -188,7 +188,7 @@ class DeconzFlowHandler(config_entries.ConfigFlow, domain=DOMAIN): for entry in self.hass.config_entries.async_entries(DOMAIN): if uuid == entry.data.get(CONF_UUID): return self._update_entry( - entry, discovery_info[CONF_HOST], entry.data.get[CONF_PORT] + entry, discovery_info[CONF_HOST], entry.data.get(CONF_PORT) ) bridgeid = discovery_info[ATTR_SERIAL]