From 7b69b2b3a6b91a00b7c67694cbd5b42700020341 Mon Sep 17 00:00:00 2001 From: Myned Date: Fri, 4 Mar 2022 00:19:13 -0600 Subject: [PATCH] Remove help.py --- commands/help.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 commands/help.py diff --git a/commands/help.py b/commands/help.py deleted file mode 100644 index c9fc595..0000000 --- a/commands/help.py +++ /dev/null @@ -1,18 +0,0 @@ -import lightbulb - - -plugin = lightbulb.Plugin("help") - - -class Help(lightbulb.BaseHelpCommand): - pass - - -def load(bot): - bot.d.old_help_command = bot.help_command - bot.help_command = Help(bot) - - -def unload(bot): - bot.help_command = bot.d.old_help_command - del bot.d.old_help_command