We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a00e00e commit 15cd8a2Copy full SHA for 15cd8a2
gcloud/datastore/entity.py
@@ -223,8 +223,8 @@ def save(self):
223
224
if isinstance(key_pb, datastore_pb.Key):
225
path = [
226
- {'kind': x.kind, 'id': x.id, 'name': x.name}
227
- for x in key_pb.path_element]
+ {'kind': element.kind, 'id': element.id, 'name': element.name}
+ for element in key_pb.path_element]
228
# Update the path (which may have been altered).
229
self._key = key.path(path)
230
0 commit comments