* Migrate WAQI to aiowaqi library * Migrate WAQI to aiowaqi library * Migrate WAQI to aiowaqi library * Add config flow to WAQI * Finish config flow * Add tests * Add tests * Fix ruff * Add issues on failing to import * Add issues on failing to import * Add issues on failing to import * Add importing issue * Finish coverage * Remove url from translation string * Fix feedback * Fix feedback
10 lines
260 B
Python
10 lines
260 B
Python
"""Constants for the World Air Quality Index (WAQI) integration."""
|
|
import logging
|
|
|
|
DOMAIN = "waqi"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
CONF_STATION_NUMBER = "station_number"
|
|
|
|
ISSUE_PLACEHOLDER = {"url": "/config/integrations/dashboard/add?domain=waqi"}
|