diff --git a/src/pyDataInterface/utils/warnings.py b/src/pyDataInterface/utils/warnings.py index 377d2c4..cb2ac36 100644 --- a/src/pyDataInterface/utils/warnings.py +++ b/src/pyDataInterface/utils/warnings.py @@ -14,7 +14,7 @@ def warn_if_instance_class_does_not_inherit_from_DataService(__value: object) -> "_abc", ] and base_class_name not in ["DataService", "list", "Enum"] - and type(__value).__name__ not in ["CallbackManager"] + and type(__value).__name__ not in ["CallbackManager", "TaskManager"] ): logger.warning( f"Warning: Class {type(__value).__name__} does not inherit from DataService."