-
Notifications
You must be signed in to change notification settings - Fork 6.6k
fix(retail): add region tag for Python - Update import_products_inline_source.py #13463
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
base: main
Are you sure you want to change the base?
Changes from all commits
afda83b
ae4dbe6
f3f1908
9ae34ea
96bea44
584d2af
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ | |
|
||
# Import products into a catalog from inline source using Retail API | ||
# | ||
# [START retail_import_products_from_inline_source] | ||
import random | ||
import string | ||
import time | ||
|
@@ -143,3 +144,4 @@ def import_products_from_inline_source(): | |
|
||
|
||
import_products_from_inline_source() | ||
# [END retail_import_products_from_inline_source] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To align with the suggestion for the start tag, this end tag should be moved to immediately follow the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider moving this start tag to just before the
import_products_from_inline_source
function definition (around line 125) to highlight the core logic of the sample. This will create a more concise and readable snippet for the tutorial.