diff --git a/discord/ext/tasks/__init__.py b/discord/ext/tasks/__init__.py index 54b872ba3..374e91e86 100644 --- a/discord/ext/tasks/__init__.py +++ b/discord/ext/tasks/__init__.py @@ -160,7 +160,7 @@ class Loop: if not issubclass(exc, BaseException): raise TypeError('{0!r} must inherit from BaseException.'.format(exc)) - self._valid_exception = tuple(*self._valid_exception, exc) + self._valid_exception = (*self._valid_exception, exc) def clear_exception_types(self): """Removes all exception types that are handled.