style: Format code with linter adjustments for readability

This commit is contained in:
Paul Gauthier (aider) 2025-02-04 13:03:32 -08:00
parent e9097c3b29
commit 5c8c78ca69

View file

@ -128,7 +128,9 @@ class FileWatcher:
else: else:
roots_to_watch = [str(self.root)] 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: if not changes:
continue continue
changed_files = {str(Path(change[1])) for change in changes} changed_files = {str(Path(change[1])) for change in changes}