Skip to content

Commit 43d9f4f

Browse files
committed
Disable turn on/off backwards compatibility
1 parent 8fbfe1f commit 43d9f4f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

custom_components/intesisbox/climate.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,9 @@
8484

8585
async def async_setup_platform(hass, config, async_add_entities, discovery_info=None):
8686
"""Create the Intesisbox climate devices."""
87+
from . import intesisbox
8788

88-
controller = IntesisBox(config[CONF_HOST], loop=hass.loop)
89+
controller = intesisbox.IntesisBox(config[CONF_HOST], loop=hass.loop)
8990
controller.connect()
9091
while not controller.is_connected:
9192
await asyncio.sleep(0.1)

0 commit comments

Comments
 (0)