Sort imports according to PEP8 for 'script' folder (#29790)
This commit is contained in:
parent
3a28361beb
commit
5cb6d1b21f
36 changed files with 69 additions and 67 deletions
|
@ -1,19 +1,21 @@
|
|||
"""Provides device automations for NEW_NAME."""
|
||||
from typing import Optional, List
|
||||
from typing import List, Optional
|
||||
|
||||
import voluptuous as vol
|
||||
|
||||
from homeassistant.const import (
|
||||
ATTR_ENTITY_ID,
|
||||
CONF_DOMAIN,
|
||||
CONF_TYPE,
|
||||
CONF_DEVICE_ID,
|
||||
CONF_DOMAIN,
|
||||
CONF_ENTITY_ID,
|
||||
SERVICE_TURN_ON,
|
||||
CONF_TYPE,
|
||||
SERVICE_TURN_OFF,
|
||||
SERVICE_TURN_ON,
|
||||
)
|
||||
from homeassistant.core import HomeAssistant, Context
|
||||
from homeassistant.core import Context, HomeAssistant
|
||||
from homeassistant.helpers import entity_registry
|
||||
import homeassistant.helpers.config_validation as cv
|
||||
|
||||
from . import DOMAIN
|
||||
|
||||
# TODO specify your supported action types.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue