From 5c8c78ca69dc2f125c023610c2216b49e506cd43 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 4 Feb 2025 13:03:32 -0800 Subject: [PATCH] style: Format code with linter adjustments for readability --- aider/watch.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aider/watch.py b/aider/watch.py index 0a657b846..72d882264 100644 --- a/aider/watch.py +++ b/aider/watch.py @@ -128,7 +128,9 @@ class FileWatcher: else: roots_to_watch = [str(self.root)] - for changes in watch(*roots_to_watch, watch_filter=self.filter_func, stop_event=self.stop_event): + for changes in watch( + *roots_to_watch, watch_filter=self.filter_func, stop_event=self.stop_event + ): if not changes: continue changed_files = {str(Path(change[1])) for change in changes}