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

Sort imports according to PEP8 for rest (#29674)

This commit is contained in:
Bas Nijholt
2019-12-09 12:09:49 +01:00
committed by Franck Nijhof
parent 186799794d
commit 04225ba802
6 changed files with 36 additions and 36 deletions

View File

@@ -4,9 +4,10 @@ import asyncio
import aiohttp
import homeassistant.components.rest.switch as rest
from homeassistant.setup import setup_component
from homeassistant.helpers.template import Template
from tests.common import get_test_home_assistant, assert_setup_component
from homeassistant.setup import setup_component
from tests.common import assert_setup_component, get_test_home_assistant
class TestRestSwitchSetup: