From 843cc9ee4ebe382ae11104625a77d573309e0990 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sat, 28 Sep 2024 15:16:59 -0700 Subject: [PATCH] style: run linter and fix whitespace in test_io.py --- tests/basic/test_io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/basic/test_io.py b/tests/basic/test_io.py index f68a46127..a6ecf7b4b 100644 --- a/tests/basic/test_io.py +++ b/tests/basic/test_io.py @@ -171,7 +171,7 @@ class TestInputOutput(unittest.TestCase): # Reset the mock to check for further calls mock_input.reset_mock() - + # Second call: should not prompt, immediately return False result = io.confirm_ask("Are you sure?", allow_never=True) self.assertFalse(result)