Skip to content

Commit 6fbdb68

Browse files
author
Kevin Hellemun
committed
Fixed code formatting. (#77)
1 parent 22b9d1f commit 6fbdb68

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bunq/sdk/json/adapters.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ def deserialize(cls, cls_target, obj_raw):
3232

3333
model_ = super()._deserialize_default(cls_target, obj_raw)
3434

35-
if isinstance(model_,
36-
core.AnchoredObjectInterface) and model_.is_all_field_none():
35+
if isinstance(
36+
model_,
37+
core.AnchoredObjectInterface
38+
) and model_.is_all_field_none():
3739
for field in model_.__dict__:
38-
3940
object_class = cls._get_object_class(field)
40-
4141
contents = super()._deserialize_default(object_class, obj_raw)
4242

4343
if contents.is_all_field_none():

0 commit comments

Comments
 (0)