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

use isort to sort imports according to PEP8 for automation (#29620)

This commit is contained in:
Bas Nijholt
2019-12-08 17:29:39 +01:00
committed by Fabian Affolter
parent a38f3ac9c6
commit d3f67c3841
30 changed files with 87 additions and 90 deletions

View File

@@ -1,14 +1,16 @@
"""The tests for the MQTT automation."""
import pytest
from unittest import mock
from homeassistant.setup import async_setup_component
import pytest
import homeassistant.components.automation as automation
from homeassistant.setup import async_setup_component
from tests.common import (
async_fire_mqtt_message,
mock_component,
async_mock_service,
async_mock_mqtt_component,
async_mock_service,
mock_component,
)
from tests.components.automation import common