Apply black formatting

This commit is contained in:
Nat Noordanus
2020-05-22 18:46:43 +02:00
parent 33fb83faad
commit 91f586f7d7
4 changed files with 14 additions and 10 deletions

View File

@@ -256,7 +256,7 @@ def test_to_dict_default_values():
some_double: float = betterproto.double_field(2)
some_message: TestChildMessage = betterproto.message_field(3)
test = TestParentMessage().from_dict({"someInt": 0, "someDouble": 1.2,})
test = TestParentMessage().from_dict({"someInt": 0, "someDouble": 1.2})
assert test.to_dict(include_default_values=True) == {
"someInt": 0,