From 6a30f2749fef5b64563a81a4c45cb41dae15dfb3 Mon Sep 17 00:00:00 2001 From: James <50501825+Gobot1234@users.noreply.github.com> Date: Mon, 27 Jan 2020 17:07:39 +0000 Subject: [PATCH] [tasks] Add is_running property to Loop --- discord/ext/tasks/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/discord/ext/tasks/__init__.py b/discord/ext/tasks/__init__.py index b33a1b0c9..266ee8c85 100644 --- a/discord/ext/tasks/__init__.py +++ b/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.