From a9990200381ce2f377ed6a552ab83b166de91d4c Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 25 Oct 2024 12:56:25 -0700 Subject: [PATCH] style: fix line length in watch_files function --- aider/io.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aider/io.py b/aider/io.py index 47085d694..eaae0d8c0 100644 --- a/aider/io.py +++ b/aider/io.py @@ -369,7 +369,9 @@ class InputOutput: def watch_files(): try: gitignore = [str(Path(root) / ".gitignore")] - for changed in watch_source_files(root, stop_event=stop_event, gitignores=gitignore): + for changed in watch_source_files( + root, stop_event=stop_event, gitignores=gitignore + ): dump(changed) if changed: self.changed_files = list(changed)[0] # Take the first changed file