mirror of
https://github.com/home-assistant/core.git
synced 2026-04-02 08:26:41 +01:00
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: Joostlek <joostlek@outlook.com>
16 lines
306 B
Python
16 lines
306 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"
|
|
CONF_ROUTE = "route"
|
|
|
|
SUBENTRY_TYPE_SUBWAY = "subway"
|
|
SUBENTRY_TYPE_BUS = "bus"
|
|
|
|
UPDATE_INTERVAL = timedelta(seconds=30)
|