From 859ee751f9aa72f9fa95d6c33fa094bc9c551efb Mon Sep 17 00:00:00 2001 From: SnowyLuma Date: Mon, 13 May 2019 14:41:30 +0200 Subject: [PATCH] [tasks] Return coro from before and after decorators --- discord/ext/tasks/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/discord/ext/tasks/__init__.py b/discord/ext/tasks/__init__.py index ad52f549a..b7b15f1d5 100644 --- a/discord/ext/tasks/__init__.py +++ b/discord/ext/tasks/__init__.py @@ -271,7 +271,7 @@ class Loop: raise TypeError('Expected coroutine function, received {0.__name__!r}.'.format(type(coro))) self._before_loop = coro - + return coro def after_loop(self, coro): """A decorator that register a coroutine to be called after the loop finished running. @@ -299,6 +299,7 @@ class Loop: raise TypeError('Expected coroutine function, received {0.__name__!r}.'.format(type(coro))) self._after_loop = coro + return coro def loop(*, seconds=0, minutes=0, hours=0, count=None, reconnect=True, loop=None): """A decorator that schedules a task in the background for you with