From eb68803013fa1ea36302dc8cd56646d4c51bd042 Mon Sep 17 00:00:00 2001 From: No767 <73260931+No767@users.noreply.github.com> Date: Tue, 16 Jul 2024 20:15:55 -0700 Subject: [PATCH] remvoe test command --- bot/cogs/admin.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/bot/cogs/admin.py b/bot/cogs/admin.py index 13d6be8..7725121 100644 --- a/bot/cogs/admin.py +++ b/bot/cogs/admin.py @@ -10,6 +10,7 @@ from discord.ext import commands from discord.ext.commands import Greedy from libs.utils import RoboContext + from rodhaj import Rodhaj GIT_PULL_REGEX = re.compile(r"\s+(?P.*)\b\s+\|\s+[\d]") @@ -179,10 +180,6 @@ async def reload(self, ctx: RoboContext) -> None: await ctx.send(self.format_results(statuses)) - @commands.command(name="test") - async def testing(self, ctx: RoboContext) -> None: - raise ValueError("hi") - async def setup(bot: Rodhaj) -> None: await bot.add_cog(Admin(bot))