mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 12:59:34 +00:00
use isort to sort imports according to PEP8 for automation (#29620)
This commit is contained in:
committed by
Fabian Affolter
parent
a38f3ac9c6
commit
d3f67c3841
@@ -4,12 +4,16 @@ from unittest.mock import patch
|
||||
|
||||
import pytest
|
||||
|
||||
import homeassistant.components.automation as automation
|
||||
from homeassistant.setup import async_setup_component
|
||||
import homeassistant.util.dt as dt_util
|
||||
import homeassistant.components.automation as automation
|
||||
|
||||
from tests.common import async_fire_time_changed, assert_setup_component, mock_component
|
||||
from tests.common import async_mock_service
|
||||
from tests.common import (
|
||||
assert_setup_component,
|
||||
async_fire_time_changed,
|
||||
async_mock_service,
|
||||
mock_component,
|
||||
)
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
|
||||
Reference in New Issue
Block a user