mirror of
https://github.com/home-assistant/core.git
synced 2025-06-26 16:07:08 +00:00
11 lines
187 B
Python
11 lines
187 B
Python
"""Constants for PEGELONLINE."""
|
|
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "pegel_online"
|
|
|
|
DEFAULT_RADIUS = "25"
|
|
CONF_STATION = "station"
|
|
|
|
MIN_TIME_BETWEEN_UPDATES = timedelta(minutes=5)
|