8000 chore: fix some more unmatched region tags by tmatsuo · Pull Request #4585 · GoogleCloudPlatform/python-docs-samples · GitHub
[go: up one dir, main page]

Skip to content

chore: fix some more unmatched region tags #4585

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion appengine/standard/firebase/firenotes/frontend/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ $(function(){

}

// [START configureFirebaseLoginWidget]
// [START gae_python_firebase_login]
// Firebase log-in widget
function configureFirebaseLoginWidget() {
var uiConfig = {
Expand Down
1 change: 1 addition & 0 deletions appengine/standard/multitenancy/taskqueue.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,4 @@ def get(self, namespace='default'):
(r'/taskqueue', TaskQueueCounterHandler),
(r'/taskqueue/(.*)', TaskQueueCounterHandler)
], debug=True)
# [END all]
1 change: 0 additions & 1 deletion appengine/standard/xmpp/xmpp.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ def post(self):
# Send an email message instead...
# [END send-chat-to-user]
pass
# [END send-chat-to-user]


# [START chat]
Expand Down
2 changes: 1 addition & 1 deletion storage/cloud-client/storage_disable_versioning.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def disable_versioning(bucket_name):
return bucket


# [END storage_enable_versioning]
# [END storage_disable_versioning]

if __name__ == "__main__":
disable_versioning(bucket_name=sys.argv[1])
2 changes: 1 addition & 1 deletion storage/cloud-client/storage_set_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def set_blob_metadata(bucket_name, blob_name):
print("The metadata for the blob {} is {}".format(blob.name, blob.metadata))


# [END storage_get_metadata]
# [END storage_set_metadata]

if __name__ == "__main__":
set_blob_metadata(bucket_name=sys.argv[1], blob_name=sys.argv[2])
0