mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 01:04:59 +00:00
style: fix import order and whitespace per linting rules
This commit is contained in:
parent
45e95d1d00
commit
e5fe5199a3
1 changed files with 9 additions and 8 deletions
|
@ -1,9 +1,9 @@
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Set, Optional
|
from typing import Optional, Set
|
||||||
|
|
||||||
from watchfiles import watch
|
|
||||||
from pathspec import PathSpec
|
from pathspec import PathSpec
|
||||||
from pathspec.patterns import GitWildMatchPattern
|
from pathspec.patterns import GitWildMatchPattern
|
||||||
|
from watchfiles import watch
|
||||||
|
|
||||||
|
|
||||||
def is_source_file(path: Path) -> bool:
|
def is_source_file(path: Path) -> bool:
|
||||||
|
@ -52,6 +52,7 @@ def load_gitignore(gitignore_path: Path) -> Optional[PathSpec]:
|
||||||
|
|
||||||
return PathSpec.from_lines(GitWildMatchPattern, patterns)
|
return PathSpec.from_lines(GitWildMatchPattern, patterns)
|
||||||
|
|
||||||
|
|
||||||
def watch_source_files(directory: str, gitignore: str = None) -> Set[str]:
|
def watch_source_files(directory: str, gitignore: str = None) -> Set[str]:
|
||||||
"""
|
"""
|
||||||
Watch for changes to source files in the given directory and its subdirectories.
|
Watch for changes to source files in the given directory and its subdirectories.
|
||||||
|
@ -83,8 +84,8 @@ def watch_source_files(directory: str, gitignore: str = None) -> Set[str]:
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
"""Example usage of the file watcher"""
|
"""Example usage of the file watcher"""
|
||||||
import sys
|
|
||||||
import argparse
|
import argparse
|
||||||
|
import sys
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(description="Watch source files for changes")
|
parser = argparse.ArgumentParser(description="Watch source files for changes")
|
||||||
parser.add_argument("directory", help="Directory to watch")
|
parser.add_argument("directory", help="Directory to watch")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue