mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
style: fix line length in watch.py by wrapping function call
This commit is contained in:
parent
d06f1ecf19
commit
24e66337ff
1 changed files with 3 additions and 1 deletions
|
@ -113,7 +113,9 @@ def main():
|
||||||
return "test" in path.name.lower()
|
return "test" in path.name.lower()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
for changed_files in watch_source_files(directory, args.gitignore, ignore_func=ignore_test_files):
|
for changed_files in watch_source_files(
|
||||||
|
directory, args.gitignore, ignore_func=ignore_test_files
|
||||||
|
):
|
||||||
print("\nChanged files:")
|
print("\nChanged files:")
|
||||||
for file in sorted(changed_files):
|
for file in sorted(changed_files):
|
||||||
print(f" {file}")
|
print(f" {file}")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue