1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 05:26:47 +00:00

Sort imports according to PEP8 for template (#29655)

This commit is contained in:
Bas Nijholt
2019-12-08 21:05:08 +01:00
committed by Franck Nijhof
parent e0b82440ad
commit 415176e350
17 changed files with 135 additions and 125 deletions

View File

@@ -1,23 +1,23 @@
"""The tests for the Template fan platform."""
import logging
import pytest
import pytest
import voluptuous as vol
from homeassistant import setup
from homeassistant.const import STATE_ON, STATE_OFF, STATE_UNAVAILABLE
from homeassistant.components.fan import (
ATTR_SPEED,
ATTR_OSCILLATING,
SPEED_LOW,
SPEED_MEDIUM,
SPEED_HIGH,
ATTR_DIRECTION,
ATTR_OSCILLATING,
ATTR_SPEED,
DIRECTION_FORWARD,
DIRECTION_REVERSE,
SPEED_HIGH,
SPEED_LOW,
SPEED_MEDIUM,
)
from homeassistant.const import STATE_OFF, STATE_ON, STATE_UNAVAILABLE
from tests.common import async_mock_service, assert_setup_component
from tests.common import assert_setup_component, async_mock_service
from tests.components.fan import common
_LOGGER = logging.getLogger(__name__)