mirror of
https://github.com/home-assistant/core.git
synced 2026-05-30 20:24:21 +01:00
6fa5fc77aa
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
492 B
Python
19 lines
492 B
Python
"""Provides the constants needed for the component."""
|
|
|
|
DOMAIN = "select"
|
|
|
|
ATTR_CYCLE = "cycle"
|
|
ATTR_OPTIONS = "options"
|
|
# pylint: disable-next=home-assistant-duplicate-const
|
|
ATTR_OPTION = "option"
|
|
|
|
CONF_CYCLE = "cycle"
|
|
CONF_OPTION = "option"
|
|
|
|
SERVICE_SELECT_FIRST = "select_first"
|
|
SERVICE_SELECT_LAST = "select_last"
|
|
SERVICE_SELECT_NEXT = "select_next"
|
|
# pylint: disable-next=home-assistant-duplicate-const
|
|
SERVICE_SELECT_OPTION = "select_option"
|
|
SERVICE_SELECT_PREVIOUS = "select_previous"
|