mirror of
https://github.com/home-assistant/core.git
synced 2025-11-11 03:50:55 +00:00
15 lines
241 B
Python
15 lines
241 B
Python
"""Constants used for Russound RIO."""
|
|
|
|
import asyncio
|
|
|
|
from aiorussound import CommandError
|
|
|
|
DOMAIN = "russound_rio"
|
|
|
|
RUSSOUND_RIO_EXCEPTIONS = (
|
|
CommandError,
|
|
ConnectionRefusedError,
|
|
TimeoutError,
|
|
asyncio.CancelledError,
|
|
)
|