From 7e55a8f68486c79b0bb2c83361aa8c0d26026789 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 2 Oct 2024 11:15:09 -0700 Subject: [PATCH] style: Format code in test_models.py to improve readability --- tests/basic/test_models.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/basic/test_models.py b/tests/basic/test_models.py index 6c3d99a96..efb9bacd1 100644 --- a/tests/basic/test_models.py +++ b/tests/basic/test_models.py @@ -76,7 +76,9 @@ class TestModels(unittest.TestCase): result = models.sanity_check_models(mock_io, main_model) - self.assertTrue(result) # Should return True because there's a problem with the editor model + self.assertTrue( + result + ) # Should return True because there's a problem with the editor model mock_sanity_check_model.assert_called_with(mock_io, main_model.editor_model) mock_io.tool_warning.assert_called_once() # Ensure a warning was issued