Refactoring. Moved LCN constants to const.py (#21376)

This commit is contained in:
Andre Lengwenus 2019-02-24 01:30:19 +01:00 committed by Fabian Affolter
parent b588c1fe1c
commit fc13e37d8d
5 changed files with 40 additions and 33 deletions

View file

@ -1,7 +1,8 @@
"""Support for LCN covers."""
from homeassistant.components.cover import CoverDevice
from homeassistant.components.lcn import (
CONF_CONNECTIONS, CONF_MOTOR, DATA_LCN, LcnDevice, get_connection)
from homeassistant.components.lcn import LcnDevice, get_connection
from homeassistant.components.lcn.const import (
CONF_CONNECTIONS, CONF_MOTOR, DATA_LCN)
from homeassistant.const import CONF_ADDRESS
DEPENDENCIES = ['lcn']