mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 12:59:34 +00:00
* Add select source support * Review feedback changes * Removed unused import * Ignore 'umused' import used in typing * Only include trace back on useful errors * Remove return from play_source
9 lines
229 B
Python
9 lines
229 B
Python
"""Const for the HEOS integration."""
|
|
|
|
COMMAND_RETRY_ATTEMPTS = 2
|
|
COMMAND_RETRY_DELAY = 1
|
|
DATA_CONTROLLER = "controller"
|
|
DATA_SOURCE_MANAGER = "source_manager"
|
|
DOMAIN = 'heos'
|
|
SIGNAL_HEOS_SOURCES_UPDATED = "heos_sources_updated"
|