hass-core/homeassistant/components/select/const.py
Franck Nijhof 054ca1d7ec
Add Select entity component platform (#51849)
Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
2021-06-18 11:51:55 +02:00

8 lines
164 B
Python

"""Provides the constants needed for the component."""
DOMAIN = "select"
ATTR_OPTIONS = "options"
ATTR_OPTION = "option"
SERVICE_SELECT_OPTION = "select_option"