mirror of
https://github.com/home-assistant/core.git
synced 2025-07-24 13:47:35 +00:00
8 lines
189 B
Python
8 lines
189 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)
|