Sort imports according to PEP8 for components starting with "Y" (#29783)
This commit is contained in:
parent
4035fda659
commit
9bcd4653e0
12 changed files with 41 additions and 44 deletions
|
@ -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__)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue