style: Format test_models.py with consistent whitespace and trailing commas

This commit is contained in:
Paul Gauthier (aider) 2024-11-19 12:06:19 -08:00
parent 92cf2cbd47
commit 5ed44bb174

View file

@ -101,10 +101,10 @@ class TestModels(unittest.TestCase):
test_settings = [
{
"name": "aider/extra",
"extra_params" : {
"extra_headers" : { "Foo" : "bar" },
"some_param" : "some value",
}
"extra_params": {
"extra_headers": {"Foo": "bar"},
"some_param": "some value",
},
},
]
@ -133,6 +133,5 @@ class TestModels(unittest.TestCase):
self.assertEqual(model.extra_params["some_param"], "some value")
if __name__ == "__main__":
unittest.main()