Sort imports according to PEP8 for components starting with "T" (#29778)

This commit is contained in:
Bas Nijholt 2019-12-09 14:41:48 +01:00 committed by Franck Nijhof
parent 485761bbaf
commit de915e1bf0
30 changed files with 77 additions and 76 deletions

View file

@ -1,23 +1,23 @@
"""Support for TCP socket based sensors."""
import logging
import socket
import select
import socket
import voluptuous as vol
from homeassistant.components.sensor import PLATFORM_SCHEMA
from homeassistant.const import (
CONF_NAME,
CONF_HOST,
CONF_PORT,
CONF_NAME,
CONF_PAYLOAD,
CONF_PORT,
CONF_TIMEOUT,
CONF_UNIT_OF_MEASUREMENT,
CONF_VALUE_TEMPLATE,
)
from homeassistant.exceptions import TemplateError
from homeassistant.helpers.entity import Entity
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.entity import Entity
_LOGGER = logging.getLogger(__name__)