From d2d8d8a67b8eb5d2b030ecdb9614ea2f563ee9a3 Mon Sep 17 00:00:00 2001 From: Marco Loewe Date: Mon, 13 Nov 2023 12:23:55 +0100 Subject: [PATCH] Removed most of the test commands --- bot.py | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/bot.py b/bot.py index 8d4b6fa..af3d20e 100644 --- a/bot.py +++ b/bot.py @@ -25,22 +25,6 @@ async def on_ready(): print(f'Logged in as {bot.user}') print('------') -@bot.command() -async def add(ctx, left: int, right: int): - await ctx.send(left + right) - -@bot.command() -async def sub(ctx, left: int, right: int): - await ctx.send(left - right) - -@bot.command() -async def times(ctx, left: int, right: int): - await ctx.send(left * right) - -@bot.command() -async def say(ctx, message): - await ctx.send(message) - @bot.command() async def cool(ctx): cool_factor = round(random.uniform(0, 100), 2)