diff --git a/homeassistant/components/evohome/__init__.py b/homeassistant/components/evohome/__init__.py index f86bf974205..29f89dc08d6 100644 --- a/homeassistant/components/evohome/__init__.py +++ b/homeassistant/components/evohome/__init__.py @@ -8,9 +8,9 @@ import re from typing import Any, Dict, Optional, Tuple import aiohttp.client_exceptions -import voluptuous as vol -import evohomeasync2 import evohomeasync +import evohomeasync2 +import voluptuous as vol from homeassistant.const import ( CONF_PASSWORD, @@ -28,7 +28,7 @@ from homeassistant.helpers.entity import Entity from homeassistant.helpers.typing import ConfigType, HomeAssistantType import homeassistant.util.dt as dt_util -from .const import DOMAIN, EVO_FOLLOW, STORAGE_VERSION, STORAGE_KEY, GWS, TCS +from .const import DOMAIN, EVO_FOLLOW, GWS, STORAGE_KEY, STORAGE_VERSION, TCS _LOGGER = logging.getLogger(__name__) diff --git a/homeassistant/components/evohome/climate.py b/homeassistant/components/evohome/climate.py index eb7f3f7d7d8..82a7001539d 100644 --- a/homeassistant/components/evohome/climate.py +++ b/homeassistant/components/evohome/climate.py @@ -1,6 +1,6 @@ """Support for Climate devices of (EMEA/EU-based) Honeywell TCC systems.""" import logging -from typing import Optional, List +from typing import List, Optional from homeassistant.components.climate import ClimateDevice from homeassistant.components.climate.const import ( @@ -14,26 +14,26 @@ from homeassistant.components.climate.const import ( PRESET_ECO, PRESET_HOME, PRESET_NONE, - SUPPORT_TARGET_TEMPERATURE, SUPPORT_PRESET_MODE, + SUPPORT_TARGET_TEMPERATURE, ) from homeassistant.const import PRECISION_TENTHS from homeassistant.helpers.typing import ConfigType, HomeAssistantType from homeassistant.util.dt import parse_datetime -from . import CONF_LOCATION_IDX, EvoDevice, EvoChild +from . import CONF_LOCATION_IDX, EvoChild, EvoDevice from .const import ( DOMAIN, - EVO_RESET, EVO_AUTO, EVO_AUTOECO, EVO_AWAY, EVO_CUSTOM, EVO_DAYOFF, - EVO_HEATOFF, EVO_FOLLOW, - EVO_TEMPOVER, + EVO_HEATOFF, EVO_PERMOVER, + EVO_RESET, + EVO_TEMPOVER, ) _LOGGER = logging.getLogger(__name__)