Sort imports according to PEP8 for components starting with "O" (#29774)

This commit is contained in:
Bas Nijholt 2019-12-09 14:26:53 +01:00 committed by Franck Nijhof
parent c49e423c78
commit 5cdaff5405
16 changed files with 72 additions and 74 deletions

View file

@ -1,26 +1,26 @@
"""Component that will help set the OpenALPR cloud for ALPR processing."""
import asyncio
import logging
from base64 import b64encode
import logging
import aiohttp
import async_timeout
import voluptuous as vol
import homeassistant.helpers.config_validation as cv
from homeassistant.core import split_entity_id
from homeassistant.const import CONF_API_KEY
from homeassistant.components.image_processing import (
PLATFORM_SCHEMA,
CONF_CONFIDENCE,
CONF_SOURCE,
CONF_ENTITY_ID,
CONF_NAME,
CONF_SOURCE,
PLATFORM_SCHEMA,
)
from homeassistant.components.openalpr_local.image_processing import (
ImageProcessingAlprEntity,
)
from homeassistant.const import CONF_API_KEY
from homeassistant.core import split_entity_id
from homeassistant.helpers.aiohttp_client import async_get_clientsession
import homeassistant.helpers.config_validation as cv
_LOGGER = logging.getLogger(__name__)