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

Sort imports according to PEP8 for pilight (#29673)

This commit is contained in:
Bas Nijholt
2019-12-09 12:10:38 +01:00
committed by Franck Nijhof
parent 04225ba802
commit d62993c5af
6 changed files with 25 additions and 26 deletions

View File

@@ -1,11 +1,11 @@
"""The tests for the Pilight sensor platform."""
import logging
from homeassistant.setup import setup_component
import homeassistant.components.sensor as sensor
from homeassistant.components import pilight
import homeassistant.components.sensor as sensor
from homeassistant.setup import setup_component
from tests.common import get_test_home_assistant, assert_setup_component, mock_component
from tests.common import assert_setup_component, get_test_home_assistant, mock_component
HASS = None