From 7bd1bcf82b74bcea23f4c220bc70439398c8b3da Mon Sep 17 00:00:00 2001 From: Jonathan Lucas Date: Wed, 13 Aug 2025 13:36:03 -0500 Subject: [PATCH] Fixed code errors --- tools/repo_index_tool.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/repo_index_tool.py b/tools/repo_index_tool.py index ea6174b..5ebfce1 100644 --- a/tools/repo_index_tool.py +++ b/tools/repo_index_tool.py @@ -224,5 +224,4 @@ class RepoIndexTool(BaseTool): decoded = base64.b64decode(content_b64).decode('utf-8', errors='replace') return decoded[:max_bytes] except Exception as e: - return f"Error decoding content for '{path}': {str(e)}"''' -} \ No newline at end of file + return f"Error decoding content for '{path}': {str(e)}" \ No newline at end of file