mirror of
https://github.com/home-assistant/core.git
synced 2026-02-28 05:46:00 +00:00
Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
12 lines
226 B
Python
12 lines
226 B
Python
"""Constants for the MTA New York City Transit integration."""
|
|
|
|
from datetime import timedelta
|
|
|
|
DOMAIN = "mta"
|
|
|
|
CONF_LINE = "line"
|
|
CONF_STOP_ID = "stop_id"
|
|
CONF_STOP_NAME = "stop_name"
|
|
|
|
UPDATE_INTERVAL = timedelta(seconds=30)
|