mirror of
https://github.com/home-assistant/core.git
synced 2025-06-30 09:57:08 +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)
|