Skip to content

Commit a95ef3b

Browse files
committed
make format
1 parent bfe8850 commit a95ef3b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/unit/objects/base_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,9 @@ class TestJSONObject(JSONObject):
231231
result["list"], [555, {"key": "mapped"}, {"value": "json"}, None]
232232
)
233233
self.assertEqual(result["nested"]["deep"]["base"], 555)
234-
self.assertEqual(result["nested"]["deep"]["primitives"], [1, "two", 3.0])
234+
self.assertEqual(
235+
result["nested"]["deep"]["primitives"], [1, "two", 3.0]
236+
)
235237

236238
def test_flatten_with_is_put_false(self):
237239
"""Test that is_put parameter is passed through"""

0 commit comments

Comments
 (0)