* Move attribution constants to entity attributes * Adjust meteo france * Adjust meteoclimatic * Adjust nws
6 lines
188 B
Python
6 lines
188 B
Python
"""Constants for Ampio Air Quality platform."""
|
|
from datetime import timedelta
|
|
from typing import Final
|
|
|
|
CONF_STATION_ID: Final = "station_id"
|
|
SCAN_INTERVAL: Final = timedelta(minutes=10)
|