mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 21:27:38 +00:00
Freeze light profiles for further development (#110946)
This commit is contained in:
parent
3a4c6fc7f3
commit
058eec114b
@ -694,7 +694,11 @@ def _coerce_none(value: str) -> None:
|
||||
|
||||
@dataclasses.dataclass
|
||||
class Profile:
|
||||
"""Representation of a profile."""
|
||||
"""Representation of a profile.
|
||||
|
||||
The light profiles feature is in a frozen development state
|
||||
until otherwise decided in an architecture discussion.
|
||||
"""
|
||||
|
||||
name: str
|
||||
color_x: float | None = dataclasses.field(repr=False)
|
||||
@ -742,7 +746,11 @@ class Profile:
|
||||
|
||||
|
||||
class Profiles:
|
||||
"""Representation of available color profiles."""
|
||||
"""Representation of available color profiles.
|
||||
|
||||
The light profiles feature is in a frozen development state
|
||||
until otherwise decided in an architecture discussion.
|
||||
"""
|
||||
|
||||
def __init__(self, hass: HomeAssistant) -> None:
|
||||
"""Initialize profiles."""
|
||||
|
Loading…
x
Reference in New Issue
Block a user