From 5d39f96c85e48d21b85a71ad6bab8c0b806eebcd Mon Sep 17 00:00:00 2001 From: sgtlaggy <8661717+sgtlaggy@users.noreply.github.com> Date: Thu, 5 Jan 2023 14:00:10 -0800 Subject: [PATCH] Update tasks example to start in `setup_hook` --- docs/ext/tasks/index.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/ext/tasks/index.rst b/docs/ext/tasks/index.rst index 32f606e23..abc1b57b7 100644 --- a/docs/ext/tasks/index.rst +++ b/docs/ext/tasks/index.rst @@ -63,6 +63,7 @@ Looping a certain amount of times before exiting: .. code-block:: python3 from discord.ext import tasks + import discord @tasks.loop(seconds=5.0, count=5) async def slow_count(): @@ -72,7 +73,9 @@ Looping a certain amount of times before exiting: async def after_slow_count(): print('done!') - slow_count.start() + class MyClient(discord.Client): + async def setup_hook(self): + slow_count.start() Waiting until the bot is ready before the loop starts: