From 14417f70af90a0911fefa3291d0c26eabb6a758d Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sun, 1 Dec 2024 07:49:17 -0800 Subject: [PATCH] style: fix linting issue in list comprehension spacing --- aider/watch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/watch.py b/aider/watch.py index 0b665fd53..cd6512fc4 100644 --- a/aider/watch.py +++ b/aider/watch.py @@ -177,7 +177,7 @@ class FileWatcher: if line_nums: content = self.io.read_text(fname) lines = content.splitlines() - comments = [lines[i-1].strip() for i in line_nums] + comments = [lines[i - 1].strip() for i in line_nums] ai_comments[fname] = comments has_bangs = has_bang