Sort imports according to PEP8 for remote (#29749)

This commit is contained in:
Bas Nijholt 2019-12-09 13:09:16 +01:00 committed by Franck Nijhof
parent c4a6f265e8
commit f81e608cc1
3 changed files with 17 additions and 18 deletions

View file

@ -3,17 +3,17 @@
import unittest
import homeassistant.components.remote as remote
from homeassistant.const import (
ATTR_ENTITY_ID,
STATE_ON,
STATE_OFF,
CONF_PLATFORM,
SERVICE_TURN_ON,
SERVICE_TURN_OFF,
SERVICE_TURN_ON,
STATE_OFF,
STATE_ON,
)
import homeassistant.components.remote as remote
from tests.common import mock_service, get_test_home_assistant
from tests.common import get_test_home_assistant, mock_service
from tests.components.remote import common
TEST_PLATFORM = {remote.DOMAIN: {CONF_PLATFORM: "test"}}