From f02dca2dd84767a6a063135481411142d68a6ca4 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sun, 1 Dec 2024 09:40:25 -0800 Subject: [PATCH] style: fix linting error by adding newline before error handling --- aider/io.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/io.py b/aider/io.py index c344876e5..f556fcb37 100644 --- a/aider/io.py +++ b/aider/io.py @@ -479,6 +479,7 @@ class InputOutput: return "" except Exception as err: import traceback + self.tool_error(str(err)) self.tool_error(traceback.format_exc()) return ""