Sort imports according to PEP8 for components starting with "H" (#29768)

This commit is contained in:
Bas Nijholt 2019-12-09 14:19:48 +01:00 committed by Franck Nijhof
parent d58e6e924a
commit 8b39957c56
16 changed files with 70 additions and 71 deletions

View file

@ -1,17 +1,17 @@
"""Support for the Hitron CODA-4582U, provided by Rogers."""
import logging
from collections import namedtuple
import logging
import requests
import voluptuous as vol
import homeassistant.helpers.config_validation as cv
from homeassistant.components.device_tracker import (
DOMAIN,
PLATFORM_SCHEMA,
DeviceScanner,
)
from homeassistant.const import CONF_HOST, CONF_PASSWORD, CONF_USERNAME, CONF_TYPE
from homeassistant.const import CONF_HOST, CONF_PASSWORD, CONF_TYPE, CONF_USERNAME
import homeassistant.helpers.config_validation as cv
_LOGGER = logging.getLogger(__name__)