flake8 correction
This commit is contained in:
parent
fb449cbc82
commit
e37c232bf6
1 changed files with 2 additions and 1 deletions
|
@ -41,7 +41,8 @@ def setup(hass, config):
|
||||||
for entry in config:
|
for entry in config:
|
||||||
if DOMAIN in entry:
|
if DOMAIN in entry:
|
||||||
if not any(CONF_PLATFORM in key for key in config[entry]):
|
if not any(CONF_PLATFORM in key for key in config[entry]):
|
||||||
config[entry] = {'platform': 'homeassistant', 'config': config[entry]}
|
config[entry] = {'platform': 'homeassistant',
|
||||||
|
'config': config[entry]}
|
||||||
|
|
||||||
component = EntityComponent(logger, DOMAIN, hass)
|
component = EntityComponent(logger, DOMAIN, hass)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue