Skip to content

Commit f971081

Browse files
authored
!timeit use 3.13 default
3.12 support has been removed but !timeit was not updated. Corrects the error of inferior programmers like @ChrisLovering.
1 parent ba117c8 commit f971081

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bot/exts/utils/snekbox/_cog.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -639,13 +639,13 @@ async def timeit_command(
639639
If multiple formatted codeblocks are provided, the first one will be the setup code, which will
640640
not be timed. The remaining codeblocks will be joined together and timed.
641641
642-
The currently supported verisons are 3.12, 3.13, and 3.13t.
642+
The currently supported verisons are 3.13, 3.13t, and 3.14.
643643
644644
We've done our best to make this sandboxed, but do let us know if you manage to find an
645645
issue with it!
646646
"""
647647
code: list[str]
648-
python_version = python_version or "3.12"
648+
python_version = python_version or "3.13"
649649
args = self.prepare_timeit_input(code)
650650
job = EvalJob(args, version=python_version, name="timeit")
651651

0 commit comments

Comments
 (0)