1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

use isort to sort imports according to PEP8 for light (#29648)

This commit is contained in:
Bas Nijholt
2019-12-08 18:16:23 +01:00
committed by Fabian Affolter
parent ce5072fc91
commit aeff27680b
15 changed files with 86 additions and 85 deletions

View File

@@ -1,9 +1,9 @@
"""Tests for the light intents."""
from homeassistant.helpers.intent import IntentHandleError
from homeassistant.const import ATTR_SUPPORTED_FEATURES, SERVICE_TURN_ON, ATTR_ENTITY_ID
from homeassistant.components import light
from homeassistant.components.light import intent
from homeassistant.const import ATTR_ENTITY_ID, ATTR_SUPPORTED_FEATURES, SERVICE_TURN_ON
from homeassistant.helpers.intent import IntentHandleError
from tests.common import async_mock_service