1
0
mirror of https://github.com/home-assistant/core.git synced 2026-03-03 00:00:58 +00:00
Files
core/homeassistant/components/oncue/const.py
2022-01-02 09:15:39 -10:00

10 lines
162 B
Python

"""Constants for the Oncue integration."""
import asyncio
import aiohttp
DOMAIN = "oncue"
CONNECTION_EXCEPTIONS = (asyncio.TimeoutError, aiohttp.ClientError)