We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05f1213 commit c2d2238Copy full SHA for c2d2238
1 file changed
sqlalchemy_datastore/datastore_dbapi.py
@@ -491,6 +491,6 @@ def parse_properties(cls, prop_k: str, prop_v: dict):
491
prop_value = prop_v["dictValue"]
492
prop_type = _types.STRUCT_FIELD_TYPES
493
elif value_type == "entityValue":
494
- prop_value = prop_v["entityValue"]["properties"]
+ prop_value = prop_v["entityValue"].get("properties") or {}
495
496
return prop_value, prop_type
0 commit comments