Sort imports according to PEP8 for eufy (#29715)
This commit is contained in:
parent
6a1753d6db
commit
81a482332d
3 changed files with 5 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
|||
"""Support for Eufy devices."""
|
||||
import logging
|
||||
import lakeside
|
||||
|
||||
import lakeside
|
||||
import voluptuous as vol
|
||||
|
||||
from homeassistant.const import (
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
"""Support for Eufy lights."""
|
||||
import logging
|
||||
|
||||
import lakeside
|
||||
|
||||
from homeassistant.components.light import (
|
||||
|
@ -7,16 +8,14 @@ from homeassistant.components.light import (
|
|||
ATTR_COLOR_TEMP,
|
||||
ATTR_HS_COLOR,
|
||||
SUPPORT_BRIGHTNESS,
|
||||
SUPPORT_COLOR_TEMP,
|
||||
SUPPORT_COLOR,
|
||||
SUPPORT_COLOR_TEMP,
|
||||
Light,
|
||||
)
|
||||
|
||||
import homeassistant.util.color as color_util
|
||||
|
||||
from homeassistant.util.color import (
|
||||
color_temperature_mired_to_kelvin as mired_to_kelvin,
|
||||
color_temperature_kelvin_to_mired as kelvin_to_mired,
|
||||
color_temperature_mired_to_kelvin as mired_to_kelvin,
|
||||
)
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
"""Support for Eufy switches."""
|
||||
import logging
|
||||
|
||||
import lakeside
|
||||
|
||||
from homeassistant.components.switch import SwitchDevice
|
||||
|
|
Loading…
Add table
Reference in a new issue