From 9d4316b1d5b6313545a3d7b656bf41ea2218e2d6 Mon Sep 17 00:00:00 2001 From: Krazer Date: Fri, 6 Sep 2024 17:39:22 -0500 Subject: [PATCH] add default empty message --- aider/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/io.py b/aider/io.py index 93182bac5..c2f82ffd3 100644 --- a/aider/io.py +++ b/aider/io.py @@ -587,7 +587,7 @@ class InputOutput: self.console.print(show_resp) return mdStream - def print(self, message): + def print(self, message=""): print(message) def append_chat_history(self, text, linebreak=False, blockquote=False, strip=True):