* Add data update coordinator to the Tautulli integration * update .coveragerc * Add guard for UpdateFailed * Apply suggestions from code review Co-authored-by: Chris Talkington <chris@talkingtontech.com> * ignore issues Co-authored-by: Chris Talkington <chris@talkingtontech.com>
5 lines
145 B
Python
5 lines
145 B
Python
"""Constants for the Tautulli integration."""
|
|
from logging import Logger, getLogger
|
|
|
|
DOMAIN = "tautulli"
|
|
LOGGER: Logger = getLogger(__package__)
|