Move imports to top for ihc (#29425)

pull/29432/head
springstan 2019-12-04 14:09:57 +01:00 committed by Pascal Vizeli
parent f4f4c695d9
commit 497674835b
1 changed files with 2 additions and 2 deletions

View File

@ -2,6 +2,8 @@
import logging
import os.path
from defusedxml import ElementTree
from ihcsdk.ihccontroller import IHCController
import voluptuous as vol
from homeassistant.components.binary_sensor import DEVICE_CLASSES_SCHEMA
@ -214,7 +216,6 @@ def setup(hass, config):
def ihc_setup(hass, config, conf, controller_id):
"""Set up the IHC component."""
from ihcsdk.ihccontroller import IHCController
url = conf[CONF_URL]
username = conf[CONF_USERNAME]
@ -272,7 +273,6 @@ def autosetup_ihc_products(
hass: HomeAssistantType, config, ihc_controller, controller_id
):
"""Auto setup of IHC products from the IHC project file."""
from defusedxml import ElementTree
project_xml = ihc_controller.get_project()
if not project_xml: