mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 19:27:45 +00:00
14 lines
266 B
Python
14 lines
266 B
Python
"""Constants for the IoTaWatt integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
|
|
import httpx
|
|
|
|
DOMAIN = "iotawatt"
|
|
VOLT_AMPERE_REACTIVE = "VAR"
|
|
VOLT_AMPERE_REACTIVE_HOURS = "VARh"
|
|
|
|
CONNECTION_ERRORS = (KeyError, json.JSONDecodeError, httpx.HTTPError)
|