mirror of
https://github.com/home-assistant/core.git
synced 2026-07-14 18:14:35 +01:00
db484a0571
Co-authored-by: Franck Nijhof <git@frenck.dev> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
10 lines
207 B
Python
10 lines
207 B
Python
"""Constants for the input_select integration."""
|
|
|
|
from enum import StrEnum
|
|
|
|
|
|
class InputSelectEntityStateAttribute(StrEnum):
|
|
"""State attributes for input select entities."""
|
|
|
|
EDITABLE = "editable"
|