mirror of
https://github.com/home-assistant/core.git
synced 2025-11-05 08:59:57 +00:00
* Move attribution constants to entity attributes * Adjust meteo france * Adjust meteoclimatic * Adjust nws
7 lines
188 B
Python
7 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)
|