style: Fix formatting in io.py

This commit is contained in:
Paul Gauthier (aider) 2024-08-23 16:15:02 -07:00
parent 7805aafe0a
commit 6185f8f271

View file

@ -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,