Skip to content

Commit

Permalink
fix some typos in add_customer_match_user_list
Browse files Browse the repository at this point in the history
  • Loading branch information
SbloodyS authored and BenRKarl committed Sep 12, 2023
1 parent 78634bc commit ca8c4fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/remarketing/add_customer_match_user_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def build_offline_user_data_job_operations(client):
# Address that includes all four required elements: first name, last
# name, country code, and postal code.
"first_name": "Alex",
"last_mame": "Quinn",
"last_name": "Quinn",
"country_code": "US",
"postal_code": "94045",
# Phone number to be converted to E.164 format, with a leading '+' as
Expand Down Expand Up @@ -352,7 +352,7 @@ def build_offline_user_data_job_operations(client):
record["first_name"], False
)
address_info.hashed_last_name = normalize_and_hash(
record["first_last"], False
record["last_name"], False
)
address_info.country_code = record["country_code"]
address_info.postal_code = record["postal_code"]
Expand Down

0 comments on commit ca8c4fe

Please sign in to comment.