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

@ -2,7 +2,6 @@
import voluptuous as vol
from homeassistant.components.geo_location import DOMAIN
from homeassistant.core import callback
from homeassistant.const import (
CONF_EVENT,
CONF_PLATFORM,
@ -10,10 +9,10 @@ from homeassistant.const import (
CONF_ZONE,
EVENT_STATE_CHANGED,
)
from homeassistant.core import callback
from homeassistant.helpers import condition, config_validation as cv
from homeassistant.helpers.config_validation import entity_domain
# mypy: allow-untyped-defs, no-check-untyped-defs
EVENT_ENTER = "enter"