Skip to content

fix(retail): add region tag for Python- Update add fullfillment places.py #13465

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
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
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

# Adding place IDs using Retail API.
#
# [START retail_add_fulfillment_places]
#
import asyncio
import random
import string
Expand Down Expand Up @@ -75,3 +77,5 @@ async def add_places(product_name: str):
create_product(product_id)

asyncio.run(add_places(product_name))

# [END retail_add_fulfillment_places]
Comment on lines +80 to +81
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For consistency with other samples in this directory (e.g., get_product.py, delete_product.py), please remove the blank line before the [END ...] region tag.

Suggested change
# [END retail_add_fulfillment_places]
# [END retail_add_fulfillment_places]