From b0f31d82969760ec643249ef145c32dbd42a39ff Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 25 Oct 2024 09:43:04 -0700 Subject: [PATCH] refactor: remove unused sys import from watch.py --- aider/watch.py | 1 - 1 file changed, 1 deletion(-) diff --git a/aider/watch.py b/aider/watch.py index 478e0a586..0fa5564e9 100644 --- a/aider/watch.py +++ b/aider/watch.py @@ -85,7 +85,6 @@ def watch_source_files(directory: str, gitignore: str = None) -> Set[str]: def main(): """Example usage of the file watcher""" import argparse - import sys parser = argparse.ArgumentParser(description="Watch source files for changes") parser.add_argument("directory", help="Directory to watch")