mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 08:14:59 +00:00
style: fix line length in watch_files function
This commit is contained in:
parent
bc4664d62c
commit
a999020038
1 changed files with 3 additions and 1 deletions
|
@ -369,7 +369,9 @@ class InputOutput:
|
|||
def watch_files():
|
||||
try:
|
||||
gitignore = [str(Path(root) / ".gitignore")]
|
||||
for changed in watch_source_files(root, stop_event=stop_event, gitignores=gitignore):
|
||||
for changed in watch_source_files(
|
||||
root, stop_event=stop_event, gitignores=gitignore
|
||||
):
|
||||
dump(changed)
|
||||
if changed:
|
||||
self.changed_files = list(changed)[0] # Take the first changed file
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue