From 260d09b3d870a8b80f9029b269e4c2ccd2e5c8e5 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Wed, 22 Jul 2020 23:59:45 +0100 Subject: [PATCH] Changing Class name --- cogs/help.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/help.py b/cogs/help.py index 7ddecc89..365d85cb 100644 --- a/cogs/help.py +++ b/cogs/help.py @@ -300,7 +300,7 @@ class HelpMenu(menus.Menu): # Set up the cog -class CustomHelp(commands.Cog): +class Help(commands.Cog): def __init__(self, bot): self.bot = bot self.bot.remove_command("help") @@ -318,4 +318,4 @@ class CustomHelp(commands.Cog): def setup(bot): - bot.add_cog(CustomHelp(bot)) + bot.add_cog(Help(bot))