docs: Fixed typo in Python execution docs

This commit is contained in:
2025-10-10 10:05:09 -06:00
parent 882942385b
commit 2a2d20a25c
+2 -2
View File
@@ -4,9 +4,9 @@ from contextlib import redirect_stdout
def run(code: str):
"""Execute the python code.
"""Execute the given Python code.
Args:
code: Python code to execute, such as `print("hello world")`
code: The Python code to execute, such as `print("hello world")`
"""
output = io.StringIO()
with redirect_stdout(output):