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 922e418 commit 05dfb12Copy full SHA for 05dfb12
fastapi_gcp_tasks/utils.py
@@ -31,7 +31,7 @@ def ensure_queue(
31
"""
32
# We extract information from the queue path to make the public api simpler
33
parsed_queue_path = client.parse_queue_path(path=path)
34
- location_args = {k: v for k, v in parsed_queue_path.items() if k in ('project', 'location')}
+ location_args = {k: v for k, v in parsed_queue_path.items() if k in ("project", "location")}
35
create_req = tasks_v2.CreateQueueRequest(
36
parent=location_path(**location_args),
37
queue=tasks_v2.Queue(name=path, **kwargs),
0 commit comments