style: Apply consistent string formatting in io.py

This commit is contained in:
Paul Gauthier (aider) 2024-08-21 05:17:23 -07:00
parent 4537e1a9f5
commit bcc7b4c120

View file

@ -312,7 +312,7 @@ class InputOutput:
return
FileHistory(self.input_history_file).append_string(inp)
# Also add to the in-memory history if it exists
if hasattr(self, 'session') and hasattr(self.session, 'history'):
if hasattr(self, "session") and hasattr(self.session, "history"):
self.session.history.append_string(inp)
def get_input_history(self):