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

sort imports according to PEP8 for lock (#29663)

This commit is contained in:
Bas Nijholt
2019-12-09 12:19:11 +01:00
committed by Franck Nijhof
parent eb47c2b148
commit 3b0f29fe95
9 changed files with 46 additions and 41 deletions

View File

@@ -1,19 +1,19 @@
"""The tests for Lock device actions."""
import pytest
import homeassistant.components.automation as automation
from homeassistant.components.lock import DOMAIN
from homeassistant.const import CONF_PLATFORM
from homeassistant.setup import async_setup_component
import homeassistant.components.automation as automation
from homeassistant.helpers import device_registry
from homeassistant.setup import async_setup_component
from tests.common import (
MockConfigEntry,
assert_lists_same,
async_get_device_automations,
async_mock_service,
mock_device_registry,
mock_registry,
async_get_device_automations,
)