diff --git a/homeassistant/components/tikteck/light.py b/homeassistant/components/tikteck/light.py
index 013e5276f49002085c76bf496aa95d8f367daf4c..6c623f29f182f55b2d4df43c871717a6c4bbed68 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"]