From c56f06fbcbfcc99690d77a2215cc852ccbcd2ad7 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sun, 1 Dec 2024 07:48:39 -0800 Subject: [PATCH] style: fix string quote consistency in comment parsing --- aider/watch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/watch.py b/aider/watch.py index c05ba345d..3aa1dca72 100644 --- a/aider/watch.py +++ b/aider/watch.py @@ -205,7 +205,7 @@ class FileWatcher: if comment: comments.append(comment) line_nums.append(i) - if comment.strip().endswith('!'): + if comment.strip().endswith("!"): has_bang = True except Exception: return None, None, False