mirror of
https://github.com/home-assistant/core.git
synced 2025-05-10 17:09:17 +00:00

* 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
12 lines
221 B
Python
12 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"
|