mirror of
https://github.com/home-assistant/core.git
synced 2025-11-14 21:40:16 +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,18 +4,17 @@ import logging
|
||||
import voluptuous as vol
|
||||
|
||||
from homeassistant import exceptions
|
||||
from homeassistant.core import CALLBACK_TYPE, callback
|
||||
from homeassistant.const import (
|
||||
CONF_VALUE_TEMPLATE,
|
||||
CONF_PLATFORM,
|
||||
CONF_ENTITY_ID,
|
||||
CONF_BELOW,
|
||||
CONF_ABOVE,
|
||||
CONF_BELOW,
|
||||
CONF_ENTITY_ID,
|
||||
CONF_FOR,
|
||||
CONF_PLATFORM,
|
||||
CONF_VALUE_TEMPLATE,
|
||||
)
|
||||
from homeassistant.helpers.event import async_track_state_change, async_track_same_state
|
||||
from homeassistant.core import CALLBACK_TYPE, callback
|
||||
from homeassistant.helpers import condition, config_validation as cv, template
|
||||
|
||||
from homeassistant.helpers.event import async_track_same_state, async_track_state_change
|
||||
|
||||
# mypy: allow-incomplete-defs, allow-untyped-calls, allow-untyped-defs
|
||||
# mypy: no-check-untyped-defs
|
||||
|
||||
Reference in New Issue
Block a user