From ad0497dfdf94794780dd776730838f517aa22a0f Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sat, 28 Sep 2024 15:02:13 -0700 Subject: [PATCH] style: run linter and fix code formatting in io.py --- aider/io.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/aider/io.py b/aider/io.py index 1495e663f..7c3569ff0 100644 --- a/aider/io.py +++ b/aider/io.py @@ -483,7 +483,13 @@ class InputOutput: self.append_chat_history(hist) def confirm_ask( - self, question, default="y", subject=None, explicit_yes_required=False, group=None, allow_never=False + self, + question, + default="y", + subject=None, + explicit_yes_required=False, + group=None, + allow_never=False, ): self.num_user_asks += 1 @@ -554,7 +560,7 @@ class InputOutput: res = res.lower()[0] - if res == 'x' and allow_never: + if res == "x" and allow_never: self.never_prompts.add(question) hist = f"{question.strip()} {res}" self.append_chat_history(hist, linebreak=True, blockquote=True)