aboutsummaryrefslogtreecommitdiff
path: root/discord
diff options
context:
space:
mode:
authorSebastian Law <[email protected]>2021-02-21 04:19:10 -0800
committerGitHub <[email protected]>2021-02-21 07:19:10 -0500
commitceab8ff638b373cb7769ce6fa9708bd350d7a71d (patch)
treecee23625790ccb049274b2e8f65b1ee293055728 /discord
parentAdd "Secret" channel/emoji example (diff)
downloaddiscord.py-ceab8ff638b373cb7769ce6fa9708bd350d7a71d.tar.xz
discord.py-ceab8ff638b373cb7769ce6fa9708bd350d7a71d.zip
[tasks] make __call__ actually appear in the docs
Diffstat (limited to 'discord')
-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 9dbc7f9c..94917ca0 100644
--- a/discord/ext/tasks/__init__.py
+++ b/discord/ext/tasks/__init__.py
@@ -161,7 +161,7 @@ class Loop:
return self._next_iteration
async def __call__(self, *args, **kwargs):
- """|coro|
+ r"""|coro|
Calls the internal callback that the task holds.