diff --git a/homeassistant/components/ihc/__init__.py b/homeassistant/components/ihc/__init__.py index a55b94eb26a..b246943b6ad 100644 --- a/homeassistant/components/ihc/__init__.py +++ b/homeassistant/components/ihc/__init__.py @@ -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: