diff --git a/aider/io.py b/aider/io.py index 976f6a574..84e4f144b 100644 --- a/aider/io.py +++ b/aider/io.py @@ -519,11 +519,7 @@ class InputOutput: elif self.yes is False: res = "no" else: - res = self.prompt_session.prompt( - question + " ", - default=default, - style=style - ) + res = self.prompt_session.prompt(question + " ", default=default, style=style) hist = f"{question.strip()} {res.strip()}" self.append_chat_history(hist, linebreak=True, blockquote=True)