mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-05-09 15:29:57 +00:00
Update tasks example to start in setup_hook
This commit is contained in:
parent
f4c0a051ab
commit
5d39f96c85
@ -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,6 +73,8 @@ Looping a certain amount of times before exiting:
|
||||
async def after_slow_count():
|
||||
print('done!')
|
||||
|
||||
class MyClient(discord.Client):
|
||||
async def setup_hook(self):
|
||||
slow_count.start()
|
||||
|
||||
Waiting until the bot is ready before the loop starts:
|
||||
|
Loading…
x
Reference in New Issue
Block a user