Sort imports according to PEP8 for rest (#29674)

This commit is contained in:
Bas Nijholt 2019-12-09 12:09:49 +01:00 committed by Franck Nijhof
parent 186799794d
commit 04225ba802
6 changed files with 36 additions and 36 deletions

View file

@ -4,6 +4,14 @@ import logging
import requests
import voluptuous as vol
from homeassistant.components.notify import (
ATTR_MESSAGE,
ATTR_TARGET,
ATTR_TITLE,
ATTR_TITLE_DEFAULT,
PLATFORM_SCHEMA,
BaseNotificationService,
)
from homeassistant.const import (
CONF_AUTHENTICATION,
CONF_HEADERS,
@ -18,15 +26,6 @@ from homeassistant.const import (
)
import homeassistant.helpers.config_validation as cv
from homeassistant.components.notify import (
ATTR_TARGET,
ATTR_TITLE,
ATTR_TITLE_DEFAULT,
ATTR_MESSAGE,
PLATFORM_SCHEMA,
BaseNotificationService,
)
CONF_DATA = "data"
CONF_DATA_TEMPLATE = "data_template"
CONF_MESSAGE_PARAMETER_NAME = "message_param_name"