mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 17:57:55 +00:00
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"
|