* 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
6 lines
133 B
Python
6 lines
133 B
Python
"""Constants for the AirVisual Pro integration."""
|
|
import logging
|
|
|
|
DOMAIN = "airvisual_pro"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|