From 89891efbb8d45a18d511e907a64152c9eae8834c Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 10 Sep 2024 10:00:05 -0700 Subject: [PATCH] style: format prompt_session.prompt call to fit on one line --- aider/io.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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)