Skip to content

Commit 769ece8

Browse files
authored
Fix region tags in add_customer_match_user_list example. (googleads#531)
1 parent 3440a01 commit 769ece8

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

examples/remarketing/add_customer_match_user_list.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,10 @@ def _add_users_to_customer_match_user_list(
186186
_print_customer_match_user_list_info(
187187
client, customer_id, user_list_resource_name
188188
)
189+
# [END add_customer_match_user_list]
189190

190191

192+
# [START add_customer_match_user_list_2]
191193
def _build_offline_user_data_job_operations(client):
192194
"""Builds and returns two sample offline user data job operations.
193195
@@ -237,6 +239,7 @@ def _build_offline_user_data_job_operations(client):
237239
user_data_with_email_address_operation,
238240
user_data_with_physical_address_operation,
239241
]
242+
# [END add_customer_match_user_list_2]
240243

241244

242245
def _check_job_status(
@@ -341,7 +344,6 @@ def _normalize_and_hash(s):
341344
A normalized (lowercase, remove whitespace) and SHA-256 hashed string.
342345
"""
343346
return hashlib.sha256(s.strip().lower().encode()).hexdigest()
344-
# [END add_customer_match_user_list]
345347

346348

347349
if __name__ == "__main__":

0 commit comments

Comments
 (0)