style: Format code in test_models.py to improve readability

This commit is contained in:
Paul Gauthier (aider) 2024-10-02 11:15:09 -07:00
parent 433223a7fc
commit 7e55a8f684

View file

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