Sort imports according to PEP8 for components starting with "U" (#29779)

* use isort to sort imports for components starting with 'u'

* add 'pylint: disable=import-error' to the right place
This commit is contained in:
Bas Nijholt 2019-12-09 19:07:32 +01:00 committed by Franck Nijhof
parent 80c344d3a8
commit e37443f10c
13 changed files with 55 additions and 56 deletions

View file

@ -1,16 +1,15 @@
"""Support for USCIS Case Status."""
import logging
from datetime import timedelta
import logging
import uscisstatus
import voluptuous as vol
from homeassistant.components.sensor import PLATFORM_SCHEMA
from homeassistant.const import CONF_FRIENDLY_NAME
from homeassistant.helpers import config_validation as cv
from homeassistant.helpers.entity import Entity
from homeassistant.util import Throttle
from homeassistant.components.sensor import PLATFORM_SCHEMA
from homeassistant.helpers import config_validation as cv
from homeassistant.const import CONF_FRIENDLY_NAME
_LOGGER = logging.getLogger(__name__)