From cca4f894a86bcd3da2177eae351b06b9f2629122 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 6 Dec 2024 12:20:23 -0800 Subject: [PATCH] style: fix indentation and remove redundant comment --- aider/watch.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/aider/watch.py b/aider/watch.py index 31b913d00..bace1fd14 100644 --- a/aider/watch.py +++ b/aider/watch.py @@ -176,8 +176,7 @@ The "AI" comments below marked with █ can be found in the code files I've shar They contain your instructions. Make the requested changes. Be sure to remove all these "AI" comments from the code! - - """ +""" # Refresh all AI comments from tracked files for fname in self.coder.abs_fnames: @@ -213,7 +212,6 @@ Be sure to remove all these "AI" comments from the code! context.add_context() res += context.format() except ValueError: - # Fall back to just showing the comments if TreeContext fails for ln, comment in zip(line_nums, comments): res += f" Line {ln}: {comment}\n"