Sort imports according to PEP8 for netgear_lte (#29725)

This commit is contained in:
Bas Nijholt 2019-12-09 11:13:37 +01:00 committed by Franck Nijhof
parent 7128396f1a
commit c3d7ab6a7f
3 changed files with 6 additions and 6 deletions

View File

@ -8,6 +8,9 @@ import attr
import eternalegypt import eternalegypt
import voluptuous as vol import voluptuous as vol
from homeassistant.components.binary_sensor import DOMAIN as BINARY_SENSOR_DOMAIN
from homeassistant.components.notify import DOMAIN as NOTIFY_DOMAIN
from homeassistant.components.sensor import DOMAIN as SENSOR_DOMAIN
from homeassistant.const import ( from homeassistant.const import (
CONF_HOST, CONF_HOST,
CONF_MONITORED_CONDITIONS, CONF_MONITORED_CONDITIONS,
@ -17,14 +20,11 @@ from homeassistant.const import (
EVENT_HOMEASSISTANT_STOP, EVENT_HOMEASSISTANT_STOP,
) )
from homeassistant.core import callback from homeassistant.core import callback
from homeassistant.components.binary_sensor import DOMAIN as BINARY_SENSOR_DOMAIN
from homeassistant.components.notify import DOMAIN as NOTIFY_DOMAIN
from homeassistant.components.sensor import DOMAIN as SENSOR_DOMAIN
from homeassistant.helpers import config_validation as cv, discovery from homeassistant.helpers import config_validation as cv, discovery
from homeassistant.helpers.aiohttp_client import async_create_clientsession from homeassistant.helpers.aiohttp_client import async_create_clientsession
from homeassistant.helpers.dispatcher import ( from homeassistant.helpers.dispatcher import (
async_dispatcher_send,
async_dispatcher_connect, async_dispatcher_connect,
async_dispatcher_send,
) )
from homeassistant.helpers.entity import Entity from homeassistant.helpers.entity import Entity
from homeassistant.helpers.event import async_track_time_interval from homeassistant.helpers.event import async_track_time_interval

View File

@ -4,7 +4,7 @@ import logging
import attr import attr
import eternalegypt import eternalegypt
from homeassistant.components.notify import ATTR_TARGET, BaseNotificationService, DOMAIN from homeassistant.components.notify import ATTR_TARGET, DOMAIN, BaseNotificationService
from . import CONF_RECIPIENT, DATA_KEY from . import CONF_RECIPIENT, DATA_KEY

View File

@ -5,7 +5,7 @@ from homeassistant.components.sensor import DOMAIN
from homeassistant.exceptions import PlatformNotReady from homeassistant.exceptions import PlatformNotReady
from . import CONF_MONITORED_CONDITIONS, DATA_KEY, LTEEntity from . import CONF_MONITORED_CONDITIONS, DATA_KEY, LTEEntity
from .sensor_types import SENSOR_SMS, SENSOR_SMS_TOTAL, SENSOR_USAGE, SENSOR_UNITS from .sensor_types import SENSOR_SMS, SENSOR_SMS_TOTAL, SENSOR_UNITS, SENSOR_USAGE
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)