aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/ext/tasks/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/ext/tasks/__init__.py b/discord/ext/tasks/__init__.py
index 54b872ba..374e91e8 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.