mirror of
https://github.com/home-assistant/core.git
synced 2025-05-22 23:07:06 +00:00

* 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>
6 lines
145 B
Python
6 lines
145 B
Python
"""Constants for the Tautulli integration."""
|
|
from logging import Logger, getLogger
|
|
|
|
DOMAIN = "tautulli"
|
|
LOGGER: Logger = getLogger(__package__)
|