Sort imports according to PEP8 for input_text (#29719)

This commit is contained in:
Bas Nijholt 2019-12-09 11:06:05 +01:00 committed by Franck Nijhof
parent 9df71ecae2
commit cbf59fb33d
3 changed files with 5 additions and 5 deletions

View file

@ -3,14 +3,14 @@ import logging
import voluptuous as vol import voluptuous as vol
import homeassistant.helpers.config_validation as cv
from homeassistant.const import ( from homeassistant.const import (
ATTR_UNIT_OF_MEASUREMENT,
ATTR_MODE, ATTR_MODE,
ATTR_UNIT_OF_MEASUREMENT,
CONF_ICON, CONF_ICON,
CONF_NAME,
CONF_MODE, CONF_MODE,
CONF_NAME,
) )
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.entity_component import EntityComponent from homeassistant.helpers.entity_component import EntityComponent
from homeassistant.helpers.restore_state import RestoreEntity from homeassistant.helpers.restore_state import RestoreEntity

View file

@ -7,7 +7,7 @@ from homeassistant.const import ATTR_ENTITY_ID
from homeassistant.core import Context, State from homeassistant.core import Context, State
from homeassistant.helpers.typing import HomeAssistantType from homeassistant.helpers.typing import HomeAssistantType
from . import DOMAIN, SERVICE_SET_VALUE, ATTR_VALUE from . import ATTR_VALUE, DOMAIN, SERVICE_SET_VALUE
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)

View file

@ -4,7 +4,7 @@ import asyncio
from homeassistant.components.input_text import ATTR_VALUE, DOMAIN, SERVICE_SET_VALUE from homeassistant.components.input_text import ATTR_VALUE, DOMAIN, SERVICE_SET_VALUE
from homeassistant.const import ATTR_ENTITY_ID from homeassistant.const import ATTR_ENTITY_ID
from homeassistant.core import CoreState, State, Context from homeassistant.core import Context, CoreState, State
from homeassistant.loader import bind_hass from homeassistant.loader import bind_hass
from homeassistant.setup import async_setup_component from homeassistant.setup import async_setup_component