Skip to content

Commit

Permalink
Remove debug printout
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasloven committed Oct 3, 2019
1 parent 40cd5e2 commit 652313a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions custom_components/favicon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,11 @@ async def async_remove_entry(hass, config_entry):

async def _update_listener(hass, config_entry):
conf = config_entry.options
_LOGGER.error(conf)
if CONFIG_ICON_PATH in hass.data[DOMAIN]:
del hass.data[DOMAIN][CONFIG_ICON_PATH]
if CONFIG_TITLE in hass.data[DOMAIN]:
del hass.data[DOMAIN][CONFIG_TITLE]
_LOGGER.error(hass.data[DOMAIN])
hass.data[DOMAIN].update(conf)
_LOGGER.error(hass.data[DOMAIN])
return apply_hooks(hass)


Expand Down

0 comments on commit 652313a

Please sign in to comment.