From 2a2d20a25cc38271b6715e03ed91a703f9cb4037 Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Fri, 10 Oct 2025 10:05:09 -0600 Subject: [PATCH] docs: Fixed typo in Python execution docs --- assets/functions/tools/execute_py_code.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/functions/tools/execute_py_code.py b/assets/functions/tools/execute_py_code.py index 71d66e1..375aea4 100644 --- a/assets/functions/tools/execute_py_code.py +++ b/assets/functions/tools/execute_py_code.py @@ -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):