diff --git a/homeassistant/components/tikteck/light.py b/homeassistant/components/tikteck/light.py index 013e5276f49..6c623f29f18 100644 --- a/homeassistant/components/tikteck/light.py +++ b/homeassistant/components/tikteck/light.py @@ -1,17 +1,18 @@ """Support for Tikteck lights.""" import logging +import tikteck import voluptuous as vol -from homeassistant.const import CONF_DEVICES, CONF_NAME, CONF_PASSWORD from homeassistant.components.light import ( ATTR_BRIGHTNESS, ATTR_HS_COLOR, + PLATFORM_SCHEMA, SUPPORT_BRIGHTNESS, SUPPORT_COLOR, Light, - PLATFORM_SCHEMA, ) +from homeassistant.const import CONF_DEVICES, CONF_NAME, CONF_PASSWORD import homeassistant.helpers.config_validation as cv import homeassistant.util.color as color_util @@ -48,7 +49,6 @@ class TikteckLight(Light): def __init__(self, device): """Initialize the light.""" - import tikteck self._name = device["name"] self._address = device["address"]