mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 09:44: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():
|
def watch_files():
|
||||||
try:
|
try:
|
||||||
gitignore = [str(Path(root) / ".gitignore")]
|
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)
|
dump(changed)
|
||||||
if changed:
|
if changed:
|
||||||
self.changed_files = list(changed)[0] # Take the first changed file
|
self.changed_files = list(changed)[0] # Take the first changed file
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue