From e239304d89fe944210e3b8d185049a0209340b7b Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 25 Oct 2024 10:53:10 -0700 Subject: [PATCH] refactor: simplify file change output format --- aider/watch.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/aider/watch.py b/aider/watch.py index 6e20ee847..762840f31 100644 --- a/aider/watch.py +++ b/aider/watch.py @@ -122,9 +122,8 @@ def main(): 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}") + print(file) except KeyboardInterrupt: print("\nStopped watching files")