From 6185f8f2711d1a7da156f7d66edbafe132701f73 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 23 Aug 2024 16:15:02 -0700 Subject: [PATCH] style: Fix 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 4e80da151..da54b5edd 100644 --- a/aider/io.py +++ b/aider/io.py @@ -390,7 +390,7 @@ class InputOutput: style = dict() def is_valid_response(text): - return text.lower()[0] in ['y', 'n', 'a', 's', ''] + return text.lower()[0] in ["y", "n", "a", "s", ""] validator = Validator.from_callable( is_valid_response,