core/homeassistant/components/oncue/const.py

19 lines
342 B
Python
Raw Normal View History

"""Constants for the Oncue integration."""
import asyncio
import aiohttp
2023-06-24 20:12:02 +00:00
from aiooncue import ServiceFailedException
DOMAIN = "oncue"
2023-06-24 20:12:02 +00:00
CONNECTION_EXCEPTIONS = (
asyncio.TimeoutError,
aiohttp.ClientError,
ServiceFailedException,
)
CONNECTION_ESTABLISHED_KEY: str = "NetworkConnectionEstablished"
VALUE_UNAVAILABLE: str = "--"