9 lines
164 B
Python
9 lines
164 B
Python
|
"""Provides the constants needed for the component."""
|
||
|
|
||
|
DOMAIN = "select"
|
||
|
|
||
|
ATTR_OPTIONS = "options"
|
||
|
ATTR_OPTION = "option"
|
||
|
|
||
|
SERVICE_SELECT_OPTION = "select_option"
|