From bcc7b4c120df611b7eee6fd33f734cc991a98f68 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 21 Aug 2024 05:17:23 -0700 Subject: [PATCH] style: Apply consistent string formatting in io.py --- aider/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/io.py b/aider/io.py index 852cfaa5e..6405c5666 100644 --- a/aider/io.py +++ b/aider/io.py @@ -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):