From 24e66337fff0e266c503602f459742e86a7aa09c Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 25 Oct 2024 09:51:55 -0700 Subject: [PATCH] style: fix line length in watch.py by wrapping function call --- aider/watch.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aider/watch.py b/aider/watch.py index e1781b4dd..3f1a1e7d0 100644 --- a/aider/watch.py +++ b/aider/watch.py @@ -113,7 +113,9 @@ def main(): return "test" in path.name.lower() try: - for changed_files in watch_source_files(directory, args.gitignore, ignore_func=ignore_test_files): + for changed_files in watch_source_files( + directory, args.gitignore, ignore_func=ignore_test_files + ): print("\nChanged files:") for file in sorted(changed_files): print(f" {file}")