Sort imports according to PEP8 for components starting with "Y" (#29783)

This commit is contained in:
Bas Nijholt 2019-12-09 14:57:42 +01:00 committed by Franck Nijhof
parent 4035fda659
commit 9bcd4653e0
12 changed files with 41 additions and 44 deletions

View file

@ -1,19 +1,19 @@
"""Support for Yeelight Sunflower color bulbs (not Yeelight Blue or WiFi)."""
import logging
import yeelightsunflower
import voluptuous as vol
import yeelightsunflower
import homeassistant.helpers.config_validation as cv
from homeassistant.components.light import (
Light,
ATTR_HS_COLOR,
SUPPORT_COLOR,
ATTR_BRIGHTNESS,
SUPPORT_BRIGHTNESS,
ATTR_HS_COLOR,
PLATFORM_SCHEMA,
SUPPORT_BRIGHTNESS,
SUPPORT_COLOR,
Light,
)
from homeassistant.const import CONF_HOST
import homeassistant.helpers.config_validation as cv
import homeassistant.util.color as color_util
_LOGGER = logging.getLogger(__name__)