* Add buttons to opt into/out of the next Ridwell pickup * Buttons finished * Coverage * better name * Move to switch * Clean up * Coverage * Use correct exception
11 lines
221 B
Python
11 lines
221 B
Python
"""Constants for the Ridwell integration."""
|
|
import logging
|
|
|
|
DOMAIN = "ridwell"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
DATA_ACCOUNT = "account"
|
|
DATA_COORDINATOR = "coordinator"
|
|
|
|
SENSOR_TYPE_NEXT_PICKUP = "next_pickup"
|