Skip to content

Commit 787e904

Browse files
committed
style: blacken ndb/model.py
1 parent 51c6e18 commit 787e904

File tree

1 file changed

+3
-1
lines changed
  • packages/google-cloud-ndb/google/cloud/ndb

1 file changed

+3
-1
lines changed

packages/google-cloud-ndb/google/cloud/ndb/model.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,9 @@ def new_entity(key):
644644
while len(subvalue) > len(value):
645645
# Need to make some more subentities
646646
if structprop._model_class is None:
647-
raise TypeError("structprop._model_class cannot be None")
647+
raise TypeError(
648+
"structprop._model_class cannot be None"
649+
)
648650
expando_kind = structprop._model_class._get_kind()
649651
expando_key = key_module.Key(expando_kind, None)
650652
value.append(new_entity(expando_key._key))

0 commit comments

Comments
 (0)