mirror of
https://github.com/home-assistant/core.git
synced 2025-06-07 06:37:07 +00:00

* Add integration for AirVisual Pro * Tests * A few more redactions * Loggers * Consistency * Remove unnecessary f-string * Use `entry.as_dict()` in diagnostics * One call * Integration types * Cleanup * Import cleanup * Code review * Code review * Code review
7 lines
133 B
Python
7 lines
133 B
Python
"""Constants for the AirVisual Pro integration."""
|
|
import logging
|
|
|
|
DOMAIN = "airvisual_pro"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|