mirror of
https://github.com/home-assistant/core.git
synced 2025-11-08 10:29:27 +00:00
12 lines
255 B
Python
12 lines
255 B
Python
"""Constants for the NOAA Tides integration."""
|
|
|
|
from datetime import timedelta
|
|
|
|
CONF_STATION_ID = "station_id"
|
|
|
|
DEFAULT_NAME = "NOAA Tides"
|
|
DEFAULT_PREDICTION_LENGTH = timedelta(days=2)
|
|
DEFAULT_TIMEZONE = "lst_ldt"
|
|
|
|
ATTRIBUTION = "Data provided by NOAA"
|