Browse Source

[tasks] Fix assignment of tuple when appending

pull/2092/head
Danny 6 years ago
committed by GitHub
parent
commit
2a301a4eb4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/ext/tasks/__init__.py

2
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.

Loading…
Cancel
Save