14 lines
301 B
Python
14 lines
301 B
Python
"""Constants for the PurpleAir integration."""
|
|
|
|
import logging
|
|
from typing import Final
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
LOGGER: Final = logging.getLogger(__package__)
|
|
PLATFORMS: Final = [Platform.SENSOR]
|
|
|
|
DOMAIN: Final[str] = "purpleair"
|
|
|
|
CONF_SENSOR_INDICES: Final[str] = "sensor_indices"
|