Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Oncue integration."""
2 
3 import aiohttp
4 from aiooncue import ServiceFailedException
5 
6 DOMAIN = "oncue"
7 
8 CONNECTION_EXCEPTIONS = (
9  TimeoutError,
10  aiohttp.ClientError,
11  ServiceFailedException,
12 )
13 
14 CONNECTION_ESTABLISHED_KEY: str = "NetworkConnectionEstablished"
15 
16 VALUE_UNAVAILABLE: str = "--"