Move ecoal_boiler imports at top-level (#29049)
This commit is contained in:
parent
cb5d00a07b
commit
71bafba9ec
1 changed files with 3 additions and 3 deletions
|
@ -1,15 +1,16 @@
|
||||||
"""Support to control ecoal/esterownik.pl coal/wood boiler controller."""
|
"""Support to control ecoal/esterownik.pl coal/wood boiler controller."""
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
from ecoaliface.simple import ECoalController
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
|
||||||
from homeassistant.const import (
|
from homeassistant.const import (
|
||||||
CONF_HOST,
|
CONF_HOST,
|
||||||
CONF_PASSWORD,
|
|
||||||
CONF_USERNAME,
|
|
||||||
CONF_MONITORED_CONDITIONS,
|
CONF_MONITORED_CONDITIONS,
|
||||||
|
CONF_PASSWORD,
|
||||||
CONF_SENSORS,
|
CONF_SENSORS,
|
||||||
CONF_SWITCHES,
|
CONF_SWITCHES,
|
||||||
|
CONF_USERNAME,
|
||||||
)
|
)
|
||||||
import homeassistant.helpers.config_validation as cv
|
import homeassistant.helpers.config_validation as cv
|
||||||
from homeassistant.helpers.discovery import load_platform
|
from homeassistant.helpers.discovery import load_platform
|
||||||
|
@ -80,7 +81,6 @@ CONFIG_SCHEMA = vol.Schema(
|
||||||
|
|
||||||
def setup(hass, hass_config):
|
def setup(hass, hass_config):
|
||||||
"""Set up global ECoalController instance same for sensors and switches."""
|
"""Set up global ECoalController instance same for sensors and switches."""
|
||||||
from ecoaliface.simple import ECoalController
|
|
||||||
|
|
||||||
conf = hass_config[DOMAIN]
|
conf = hass_config[DOMAIN]
|
||||||
host = conf[CONF_HOST]
|
host = conf[CONF_HOST]
|
||||||
|
|
Loading…
Add table
Reference in a new issue