Sort imports according to PEP8 for opentherm_gw (#29671)

This commit is contained in:
Bas Nijholt 2019-12-09 11:34:06 +01:00 committed by Franck Nijhof
parent 0fbb450838
commit 0e71c29e00
6 changed files with 14 additions and 19 deletions

View file

@ -3,17 +3,17 @@ import logging
from pyotgw import vars as gw_vars
from homeassistant.components.climate import ClimateDevice, ENTITY_ID_FORMAT
from homeassistant.components.climate import ENTITY_ID_FORMAT, ClimateDevice
from homeassistant.components.climate.const import (
CURRENT_HVAC_COOL,
CURRENT_HVAC_HEAT,
CURRENT_HVAC_IDLE,
HVAC_MODE_COOL,
HVAC_MODE_HEAT,
SUPPORT_TARGET_TEMPERATURE,
PRESET_AWAY,
PRESET_NONE,
SUPPORT_PRESET_MODE,
SUPPORT_TARGET_TEMPERATURE,
)
from homeassistant.const import (
ATTR_TEMPERATURE,
@ -30,7 +30,6 @@ from homeassistant.helpers.entity import async_generate_entity_id
from . import DOMAIN
from .const import CONF_FLOOR_TEMP, CONF_PRECISION, DATA_GATEWAYS, DATA_OPENTHERM_GW
_LOGGER = logging.getLogger(__name__)
DEFAULT_FLOOR_TEMP = False