mirror of
https://github.com/home-assistant/core.git
synced 2025-07-25 14:17:45 +00:00
Sort imports according to PEP8 for emulated_roku (#29756)
This commit is contained in:
parent
991834f337
commit
60e1789557
@ -2,16 +2,16 @@
|
|||||||
from unittest.mock import Mock, patch
|
from unittest.mock import Mock, patch
|
||||||
|
|
||||||
from homeassistant.components.emulated_roku.binding import (
|
from homeassistant.components.emulated_roku.binding import (
|
||||||
EmulatedRoku,
|
ATTR_APP_ID,
|
||||||
EVENT_ROKU_COMMAND,
|
|
||||||
ATTR_SOURCE_NAME,
|
|
||||||
ATTR_COMMAND_TYPE,
|
ATTR_COMMAND_TYPE,
|
||||||
ATTR_KEY,
|
ATTR_KEY,
|
||||||
ATTR_APP_ID,
|
ATTR_SOURCE_NAME,
|
||||||
ROKU_COMMAND_KEYPRESS,
|
EVENT_ROKU_COMMAND,
|
||||||
ROKU_COMMAND_KEYDOWN,
|
ROKU_COMMAND_KEYDOWN,
|
||||||
|
ROKU_COMMAND_KEYPRESS,
|
||||||
ROKU_COMMAND_KEYUP,
|
ROKU_COMMAND_KEYUP,
|
||||||
ROKU_COMMAND_LAUNCH,
|
ROKU_COMMAND_LAUNCH,
|
||||||
|
EmulatedRoku,
|
||||||
)
|
)
|
||||||
|
|
||||||
from tests.common import mock_coro_func
|
from tests.common import mock_coro_func
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
"""Tests for emulated_roku config flow."""
|
"""Tests for emulated_roku config flow."""
|
||||||
from homeassistant.components.emulated_roku import config_flow
|
from homeassistant.components.emulated_roku import config_flow
|
||||||
|
|
||||||
from tests.common import MockConfigEntry
|
from tests.common import MockConfigEntry
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
"""Test emulated_roku component setup process."""
|
"""Test emulated_roku component setup process."""
|
||||||
from unittest.mock import Mock, patch
|
from unittest.mock import Mock, patch
|
||||||
|
|
||||||
from homeassistant.setup import async_setup_component
|
|
||||||
from homeassistant.components import emulated_roku
|
from homeassistant.components import emulated_roku
|
||||||
|
from homeassistant.setup import async_setup_component
|
||||||
|
|
||||||
from tests.common import mock_coro_func
|
from tests.common import mock_coro_func
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user