From dea1b2212d75063a8922b48e497700f409a5f763 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 7 Sep 2023 20:09:09 -0400 Subject: [PATCH] fix(forums): fixed an error in the resolved command --- forums/forums.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forums/forums.py b/forums/forums.py index e4b1ccb..e07dc0a 100644 --- a/forums/forums.py +++ b/forums/forums.py @@ -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):