mirror of
https://github.com/home-assistant/core.git
synced 2025-07-14 08:47:10 +00:00
Use ColorMode enum in litejet (#70516)
This commit is contained in:
parent
1ba0a58b6d
commit
addf73d007
@ -4,8 +4,8 @@ import logging
|
|||||||
from homeassistant.components.light import (
|
from homeassistant.components.light import (
|
||||||
ATTR_BRIGHTNESS,
|
ATTR_BRIGHTNESS,
|
||||||
ATTR_TRANSITION,
|
ATTR_TRANSITION,
|
||||||
COLOR_MODE_BRIGHTNESS,
|
|
||||||
SUPPORT_TRANSITION,
|
SUPPORT_TRANSITION,
|
||||||
|
ColorMode,
|
||||||
LightEntity,
|
LightEntity,
|
||||||
)
|
)
|
||||||
from homeassistant.config_entries import ConfigEntry
|
from homeassistant.config_entries import ConfigEntry
|
||||||
@ -41,8 +41,8 @@ async def async_setup_entry(
|
|||||||
class LiteJetLight(LightEntity):
|
class LiteJetLight(LightEntity):
|
||||||
"""Representation of a single LiteJet light."""
|
"""Representation of a single LiteJet light."""
|
||||||
|
|
||||||
_attr_color_mode = COLOR_MODE_BRIGHTNESS
|
_attr_color_mode = ColorMode.BRIGHTNESS
|
||||||
_attr_supported_color_modes = {COLOR_MODE_BRIGHTNESS}
|
_attr_supported_color_modes = {ColorMode.BRIGHTNESS}
|
||||||
_attr_supported_features = SUPPORT_TRANSITION
|
_attr_supported_features = SUPPORT_TRANSITION
|
||||||
|
|
||||||
def __init__(self, config_entry, lj, i, name): # pylint: disable=invalid-name
|
def __init__(self, config_entry, lj, i, name): # pylint: disable=invalid-name
|
||||||
|
Loading…
x
Reference in New Issue
Block a user