mirror of
https://github.com/home-assistant/core.git
synced 2026-07-07 06:46:17 +01:00
e3c31a3482
Co-authored-by: Norbert Rittel <norbert@rittel.de> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Simon Lamon <32477463+silamon@users.noreply.github.com> Co-authored-by: Erik Montnemery <erik@montnemery.com>
11 lines
355 B
Python
11 lines
355 B
Python
"""Constants for the Google Air Quality integration."""
|
|
|
|
from typing import Final
|
|
|
|
CONF_ENABLE_CUSTOM_LAQI: Final = "enable_custom_laqi"
|
|
CONF_REFERRER: Final = "referrer"
|
|
CUSTOM_LAQI: Final = "custom_laqi"
|
|
CUSTOM_LOCAL_AQI_OPTIONS: Final = "custom_local_aqi_options"
|
|
DOMAIN: Final = "google_air_quality"
|
|
SECTION_API_KEY_OPTIONS: Final = "api_key_options"
|