We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f672298 commit 467150fCopy full SHA for 467150f
1 file changed
toolarena/cli.py
@@ -1,6 +1,7 @@
1
import os
2
import shlex
3
import shutil
4
+from builtins import print as builtins_print
5
from pathlib import Path
6
from typing import Annotated
7
@@ -33,7 +34,7 @@ def signature(
33
34
) -> None:
35
"""Print the signature of a tool."""
36
definition = ToolDefinition.from_yaml(DEFINITIONS_DIR / name / "task.yaml")
- print(definition.python_signature)
37
+ builtins_print(definition.python_signature)
38
39
40
@app.command()
0 commit comments