style: fix linting issues in io.py

This commit is contained in:
Paul Gauthier (aider) 2024-10-25 13:17:58 -07:00
parent 88c54c918c
commit ff8f3eb8c2

View file

@ -444,10 +444,10 @@ class InputOutput:
else:
line = input(show)
dump(line)#
dump(line) #
# Check if we were interrupted by a file change
if self.changed_files:
changed = ' '.join(self.changed_files)
changed = " ".join(self.changed_files)
self.changed_files = None
return f"/add {changed}" # Return an edit command for the changed file