From 12ae5b3038f19281ca33a3d393a5ecf6eda400d2 Mon Sep 17 00:00:00 2001 From: Simone Vellei Date: Sat, 2 Nov 2024 17:53:02 +0100 Subject: [PATCH] fix lint --- tool/python/python.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tool/python/python.go b/tool/python/python.go index 3fd6b7ad..c495a852 100644 --- a/tool/python/python.go +++ b/tool/python/python.go @@ -22,6 +22,7 @@ func (t *Tool) WithPythonPath(pythonPath string) *Tool { } type Input struct { + // nolint:lll PythonCode string `json:"python_code" jsonschema:"description=python code that uses print() to print the final result to stdout."` } @@ -38,6 +39,7 @@ func (t *Tool) Name() string { //nolint:lll func (t *Tool) Description() string { + // nolint:lll return "Use this tool to solve calculations, manipulate data, or perform any other Python-related tasks. The code should use print() to print the final result to stdout." }