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)
|