Browse Source

[tasks] Add is_running property to Loop

pull/2634/head
James 5 years ago
committed by Rapptz
parent
commit
6a30f2749f
  1. 7
      discord/ext/tasks/__init__.py

7
discord/ext/tasks/__init__.py

@ -276,6 +276,13 @@ class Loop:
"""
return self._has_failed
def is_running(self):
""":class:`bool`: Check if the task is currently running.
.. versionadded:: 1.4
"""
return not bool(self._task.done()) if self._task else False
def before_loop(self, coro):
"""A decorator that registers a coroutine to be called before the loop starts running.

Loading…
Cancel
Save