From 72dca1da091945651788ed6cc5e314570b79361f Mon Sep 17 00:00:00 2001 From: Gianluca Barbaro Date: Wed, 18 Jan 2017 12:39:16 +0100 Subject: [PATCH] Update generic_thermostat.py --- homeassistant/components/climate/generic_thermostat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/climate/generic_thermostat.py b/homeassistant/components/climate/generic_thermostat.py index a61c71a6551..efebcbbf7e9 100644 --- a/homeassistant/components/climate/generic_thermostat.py +++ b/homeassistant/components/climate/generic_thermostat.py @@ -5,6 +5,7 @@ For more details about this platform, please refer to the documentation at https://home-assistant.io/components/climate.generic_thermostat/ """ import logging +import time import voluptuous as vol @@ -16,7 +17,6 @@ from homeassistant.const import ( from homeassistant.helpers import condition from homeassistant.helpers.event import track_state_change import homeassistant.helpers.config_validation as cv -import time _LOGGER = logging.getLogger(__name__)