From 402934f0f51898c105d7b7ec927eac15a0de9fc6 Mon Sep 17 00:00:00 2001 From: DragonSenseiGuy <200907890+DragonSenseiGuy@users.noreply.github.com> Date: Sat, 27 Sep 2025 16:12:40 -0400 Subject: [PATCH 1/2] add exec as an alias for eval --- bot/exts/utils/snekbox/_cog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/exts/utils/snekbox/_cog.py b/bot/exts/utils/snekbox/_cog.py index 9607cd6dd3..8144973085 100644 --- a/bot/exts/utils/snekbox/_cog.py +++ b/bot/exts/utils/snekbox/_cog.py @@ -571,7 +571,7 @@ async def run_job( @command( name="eval", - aliases=("e",), + aliases=("e","exec"), usage="[python_version] ", help=f""" Run Python code and get the results. From 61925dfb3a855b8885e08e050b8103c7a13e7f38 Mon Sep 17 00:00:00 2001 From: DragonSenseiGuy <200907890+DragonSenseiGuy@users.noreply.github.com> Date: Sat, 27 Sep 2025 16:21:51 -0400 Subject: [PATCH 2/2] add whitespace --- bot/exts/utils/snekbox/_cog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/exts/utils/snekbox/_cog.py b/bot/exts/utils/snekbox/_cog.py index 8144973085..39aa064aeb 100644 --- a/bot/exts/utils/snekbox/_cog.py +++ b/bot/exts/utils/snekbox/_cog.py @@ -571,7 +571,7 @@ async def run_job( @command( name="eval", - aliases=("e","exec"), + aliases=("e", "exec"), usage="[python_version] ", help=f""" Run Python code and get the results.