From a02b48893486992677c755d5bed971174a708c14 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 21 Sep 2023 12:37:16 -0400 Subject: [PATCH] fix(suggestions): whoops! --- suggestions/suggestions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/suggestions/suggestions.py b/suggestions/suggestions.py index b79436b..f7650a8 100644 --- a/suggestions/suggestions.py +++ b/suggestions/suggestions.py @@ -611,7 +611,7 @@ class SuggestionApproveModal(discord.ui.Modal, title="Approving suggestion..."): ) async def on_submit(self, interaction: discord.Interaction): - cog = Red.get_cog('Suggestions') + cog = Red.get_cog(name='Suggestions') if self.reason.value != "": await Suggestions._interaction_finish_suggestion(cog, interaction, self.message, True, self.reason.value) else: @@ -632,7 +632,7 @@ class SuggestionDenyModal(discord.ui.Modal, title="Denying suggestion..."): ) async def on_submit(self, interaction: discord.Interaction): - cog = Red.get_cog(Suggestions) + cog = Red.get_cog(name='Suggestions') if self.reason.value != "": await Suggestions._interaction_finish_suggestion(cog, interaction, self.message, False, self.reason.value) else: