Skip to content
This repository was archived by the owner on Feb 1, 2024. It is now read-only.

Commit 76a5910

Browse files
authored
Update region tag for Cloud Tasks snippets [(#2350)](GoogleCloudPlatform/python-docs-samples#2350)
1 parent 8c7b2a5 commit 76a5910

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

samples/appengine/flexible/tasks/snippets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,14 +221,14 @@ def pause_queue(project, location, queue):
221221

222222

223223
def delete_queue(project, location, queue):
224+
# [START taskqueues_deleting_queues]
224225
client = tasks.CloudTasksClient()
225226

226227
# TODO(developer): Uncomment these lines and replace with your values.
227228
# project = 'my-project-id'
228229
# location = 'us- central1'
229230
# queue = 'queue1'
230231

231-
# [START taskqueues_deleting_queues]
232232
queue_path = client.queue_path(project, location, queue)
233233
response = client.delete_queue(queue_path)
234234
# [END taskqueues_deleting_queues]

0 commit comments

Comments
 (0)