File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ This repository holds the samples used in the python documentation on [cloud.goo
10
10
[ ![ Build Status] ( https://travis-ci.org/GoogleCloudPlatform/python-docs-samples.svg )] ( https://travis-ci.org/GoogleCloudPlatform/python-docs-samples )
11
11
[ ![ Coverage Status] ( https://coveralls.io/repos/github/GoogleCloudPlatform/python-docs-samples/badge.svg?branch=HEAD )] ( https://coveralls.io/github/GoogleCloudPlatform/python-docs-samples?branch=HEAD )
12
12
13
- For more detailed introduction to a product, check the README.md in the
13
+ For a more detailed introduction to a product, check the README.md in the
14
14
corresponding folder.
15
15
16
16
## Contributing changes
Original file line number Diff line number Diff line change @@ -209,6 +209,7 @@ def delete(client):
209
209
210
210
211
211
def batch_upsert (client ):
212
+ # [START datastore_batch_upsert]
212
213
task1 = datastore .Entity (client .key ('Task' , 1 ))
213
214
214
215
task1 .update ({
@@ -227,7 +228,6 @@ def batch_upsert(client):
227
228
'description' : 'Integrate Cloud Datastore'
228
229
})
229
230
230
- # [START datastore_batch_upsert]
231
231
client .put_multi ([task1 , task2 ])
232
232
# [END datastore_batch_upsert]
233
233
You can’t perform that action at this time.
0 commit comments