fix missing await

This commit is contained in:
deflax 2024-01-16 18:59:24 +02:00
parent c2919314b0
commit d93992b198

View file

@ -74,7 +74,7 @@ async def start_task(ctx):
@bot.command(name='show') @bot.command(name='show')
async def show_task(ctx): async def show_task(ctx):
global counter global counter
ctx.channel.send(str(counter)) await ctx.channel.send(str(counter))
@tasks.loop(seconds=10) @tasks.loop(seconds=10)
async def my_task(): async def my_task():