mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
style: fix linting issues in io.py
This commit is contained in:
parent
88c54c918c
commit
ff8f3eb8c2
1 changed files with 2 additions and 2 deletions
|
@ -444,10 +444,10 @@ class InputOutput:
|
||||||
else:
|
else:
|
||||||
line = input(show)
|
line = input(show)
|
||||||
|
|
||||||
dump(line)#
|
dump(line) #
|
||||||
# Check if we were interrupted by a file change
|
# Check if we were interrupted by a file change
|
||||||
if self.changed_files:
|
if self.changed_files:
|
||||||
changed = ' '.join(self.changed_files)
|
changed = " ".join(self.changed_files)
|
||||||
self.changed_files = None
|
self.changed_files = None
|
||||||
|
|
||||||
return f"/add {changed}" # Return an edit command for the changed file
|
return f"/add {changed}" # Return an edit command for the changed file
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue