Sort imports according to PEP8 for components starting with "C" (#29763)

This commit is contained in:
Bas Nijholt 2019-12-09 18:56:21 +01:00 committed by Franck Nijhof
parent 6cc75fc6f3
commit 080c702d4f
15 changed files with 30 additions and 33 deletions

View file

@ -6,6 +6,7 @@ from aiohttp.hdrs import CONTENT_TYPE
import requests
import voluptuous as vol
from homeassistant.components.notify import PLATFORM_SCHEMA, BaseNotificationService
from homeassistant.const import (
CONF_API_KEY,
CONF_RECIPIENT,
@ -14,8 +15,6 @@ from homeassistant.const import (
)
import homeassistant.helpers.config_validation as cv
from homeassistant.components.notify import PLATFORM_SCHEMA, BaseNotificationService
_LOGGER = logging.getLogger(__name__)
BASE_API_URL = "https://rest.clicksend.com/v3"