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

@ -5,15 +5,15 @@ import logging
import requests
import voluptuous as vol
import homeassistant.helpers.config_validation as cv
from homeassistant.components.sensor import PLATFORM_SCHEMA
from homeassistant.const import (
CONF_API_KEY,
CONF_NAME,
CONF_BASE,
CONF_QUOTE,
ATTR_ATTRIBUTION,
CONF_API_KEY,
CONF_BASE,
CONF_NAME,
CONF_QUOTE,
)
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.entity import Entity
_LOGGER = logging.getLogger(__name__)