1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-26 22:18:40 +00:00

Sort imports according to PEP8 for components starting with "T" (#29778)

This commit is contained in:
Bas Nijholt
2019-12-09 14:41:48 +01:00
committed by Franck Nijhof
parent 485761bbaf
commit de915e1bf0
30 changed files with 77 additions and 76 deletions

View File

@@ -1,5 +1,6 @@
"""The tests for the Tomato device tracker platform."""
from unittest import mock
import pytest
import requests
import requests_mock
@@ -9,11 +10,11 @@ from homeassistant.components.device_tracker import DOMAIN
import homeassistant.components.tomato.device_tracker as tomato
from homeassistant.const import (
CONF_HOST,
CONF_USERNAME,
CONF_PASSWORD,
CONF_PLATFORM,
CONF_PORT,
CONF_SSL,
CONF_PLATFORM,
CONF_USERNAME,
CONF_VERIFY_SSL,
)