1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-30 20:24:21 +01:00
Files
core/homeassistant/components/oncue/const.py
T
2022-10-23 18:01:43 -05:00

14 lines
259 B
Python

"""Constants for the Oncue integration."""
import asyncio
import aiohttp
DOMAIN = "oncue"
CONNECTION_EXCEPTIONS = (asyncio.TimeoutError, aiohttp.ClientError)
CONNECTION_ESTABLISHED_KEY: str = "NetworkConnectionEstablished"
VALUE_UNAVAILABLE: str = "--"