sort imports according to PEP8 for components (#29609)

This commit is contained in:
Bas Nijholt 2019-12-08 13:46:04 +01:00 committed by Franck Nijhof
parent b4bcd477f8
commit 74c0219d0c
2 changed files with 2 additions and 3 deletions

View file

@ -11,7 +11,6 @@ import logging
from homeassistant.core import split_entity_id
# mypy: allow-untyped-defs
_LOGGER = logging.getLogger(__name__)

View file

@ -3,13 +3,13 @@ from unittest.mock import patch
import pytest
from homeassistant.setup import async_setup_component
from homeassistant.components.websocket_api.http import URL
from homeassistant.components.websocket_api.auth import (
TYPE_AUTH,
TYPE_AUTH_OK,
TYPE_AUTH_REQUIRED,
)
from homeassistant.components.websocket_api.http import URL
from homeassistant.setup import async_setup_component
from tests.common import mock_coro