mirror of
https://github.com/home-assistant/core.git
synced 2026-09-13 20:20:10 +01:00
11 lines
201 B
Python
11 lines
201 B
Python
"""Constants for the IoTaWatt integration."""
|
|
|
|
import json
|
|
|
|
import httpx
|
|
|
|
DOMAIN = "iotawatt"
|
|
VOLT_AMPERE_REACTIVE_HOURS = "VARh"
|
|
|
|
CONNECTION_ERRORS = (KeyError, json.JSONDecodeError, httpx.HTTPError)
|