mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00:35:00 +00:00
style: Apply consistent string formatting in io.py
This commit is contained in:
parent
4537e1a9f5
commit
bcc7b4c120
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue