mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 18:27:51 +00:00
14 lines
259 B
Python
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 = "--"
|