mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-22 04:05:32 +01: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)
|