From a7189b48ea2983727da5482f75bb8347c74ea060 Mon Sep 17 00:00:00 2001 From: Zevaryx Date: Sun, 27 Jun 2021 19:12:39 -0600 Subject: [PATCH] Am dumb --- jarvis/cogs/dev.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jarvis/cogs/dev.py b/jarvis/cogs/dev.py index f791349..e05558b 100644 --- a/jarvis/cogs/dev.py +++ b/jarvis/cogs/dev.py @@ -237,7 +237,7 @@ class DevCog(commands.Cog): await ctx.send(f"```\n{output}\n```") @commands.is_owner() - @commands.command(name=eval) + @commands.command(name="eval") async def _eval(self, ctx, *, code: str): output = eval(code, locals=locals(), globals=globals()) await ctx.send(f"```{output}```")