1
mirror of https://github.com/home-assistant/core synced 2024-07-18 12:02:20 +02:00

sort imports according to PEP8 for actiontec (#29612)

This commit is contained in:
Bas Nijholt 2019-12-08 13:44:44 +01:00 committed by Franck Nijhof
parent a885670a9a
commit cfe68d7e00

View File

@ -1,18 +1,19 @@
"""Support for Actiontec MI424WR (Verizon FIOS) routers."""
from collections import namedtuple
import logging
import re
import telnetlib
from collections import namedtuple
import voluptuous as vol
import homeassistant.helpers.config_validation as cv
import homeassistant.util.dt as dt_util
from homeassistant.components.device_tracker import (
DOMAIN,
PLATFORM_SCHEMA,
DeviceScanner,
)
from homeassistant.const import CONF_HOST, CONF_PASSWORD, CONF_USERNAME
import homeassistant.helpers.config_validation as cv
import homeassistant.util.dt as dt_util
_LOGGER = logging.getLogger(__name__)