aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar MikoĊ‚aj Kruczek <[email protected]>2023-09-02 12:47:36 +0200
committerGravatar GitHub <[email protected]>2023-09-02 10:47:36 +0000
commit5d69041b4fa863028c7774149ee989a285f2a9b2 (patch)
tree3baf0d42efa606ac6e6a210abfa2eb18fce2fa32
parentImprove the `in-place` tag (#2737) (diff)
fix: update misleading docstring in eval command (#2739)
-rw-r--r--bot/exts/utils/snekbox/_cog.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/utils/snekbox/_cog.py b/bot/exts/utils/snekbox/_cog.py
index 842991440..9f2d87a15 100644
--- a/bot/exts/utils/snekbox/_cog.py
+++ b/bot/exts/utils/snekbox/_cog.py
@@ -562,7 +562,7 @@ class Snekbox(Cog):
If multiple codeblocks are in a message, all of them will be joined and evaluated,
ignoring the text outside them.
- By default, your code is run on Python 3.11. A `python_version` arg of `3.10` can also be specified.
+ Currently only 3.11 version is supported.
We've done our best to make this sandboxed, but do let us know if you manage to find an
issue with it!
@@ -598,7 +598,7 @@ class Snekbox(Cog):
If multiple formatted codeblocks are provided, the first one will be the setup code, which will
not be timed. The remaining codeblocks will be joined together and timed.
- By default, your code is run on Python 3.11. A `python_version` arg of `3.10` can also be specified.
+ Currently only 3.11 version is supported.
We've done our best to make this sandboxed, but do let us know if you manage to find an
issue with it!