From f20b32b01bb5227616203f6af5b42a06b5da4061 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 4 Feb 2025 13:14:45 -0800 Subject: [PATCH] refactor: Remove debug dump statement from file watcher --- aider/watch.py | 1 - 1 file changed, 1 deletion(-) diff --git a/aider/watch.py b/aider/watch.py index de617022f..76500a289 100644 --- a/aider/watch.py +++ b/aider/watch.py @@ -132,7 +132,6 @@ class FileWatcher: else: roots_to_watch = [str(self.root)] - dump(list(d for d in roots_to_watch if "tmp.benchmarks" in d)) for changes in watch( *roots_to_watch, watch_filter=self.filter_func, stop_event=self.stop_event ):