refactor: remove unused sys import from watch.py

This commit is contained in:
Paul Gauthier (aider) 2024-10-25 09:43:04 -07:00
parent e5fe5199a3
commit b0f31d8296

View file

@ -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")