fix(forums): fixed an error in the resolved command

This commit is contained in:
SeaswimmerTheFsh 2023-09-07 20:09:09 -04:00
parent 25159b6bc9
commit dea1b2212d
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 5019678FD9CF50D8

View file

@ -34,7 +34,7 @@ class Forums(commands.Cog):
await msg.edit(view=self.ResolvedButtons(timeout=180, passed_info=passed_info))
else:
await ctx.message.add_reaction("")
await ctx.message.delete(5)
await ctx.message.delete(delay=5)
class ResolvedButtons(ui.View):
def __init__(self, timeout, passed_info: dict):