mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 12:59:34 +00:00
use isort to sort imports according to PEP8 for cloud (#29626)
This commit is contained in:
committed by
Fabian Affolter
parent
e4e9cdce73
commit
fbd4cf1089
@@ -1,18 +1,19 @@
|
||||
"""Test the cloud.iot module."""
|
||||
from unittest.mock import patch, MagicMock
|
||||
from unittest.mock import MagicMock, patch
|
||||
|
||||
from aiohttp import web
|
||||
import pytest
|
||||
|
||||
from homeassistant.core import State
|
||||
from homeassistant.setup import async_setup_component
|
||||
from homeassistant.components.cloud import DOMAIN
|
||||
from homeassistant.components.cloud.client import CloudClient
|
||||
from homeassistant.components.cloud.const import PREF_ENABLE_ALEXA, PREF_ENABLE_GOOGLE
|
||||
from tests.components.alexa import test_smart_home as test_alexa
|
||||
from tests.common import mock_coro
|
||||
from homeassistant.core import State
|
||||
from homeassistant.setup import async_setup_component
|
||||
|
||||
from . import mock_cloud_prefs, mock_cloud
|
||||
from . import mock_cloud, mock_cloud_prefs
|
||||
|
||||
from tests.common import mock_coro
|
||||
from tests.components.alexa import test_smart_home as test_alexa
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
|
||||
Reference in New Issue
Block a user