Skip to content

Commit

Permalink
Remove normalization and hashing of postal code and country code
Browse files Browse the repository at this point in the history
  • Loading branch information
laurachevalier4 authored and BenRKarl committed Nov 21, 2023
1 parent 71dee33 commit 02e78ed
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions examples/remarketing/upload_enhanced_conversions_for_web.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,8 @@ def main(
address_info.hashed_last_name = normalize_and_hash(
raw_record["last_name"]
)
address_info.hashed_street_address = normalize_and_hash(
raw_record["country_code"]
)
address_info.hashed_street_address = normalize_and_hash(
raw_record["postal_code"]
)
address_info.hashed_street_address = raw_record["country_code"]
address_info.hashed_street_address = raw_record["postal_code"]
# Adds the address identifier to the conversion adjustment.
conversion_adjustment.user_identifiers.append(address_identifier)
# [END add_user_identifiers]
Expand Down

0 comments on commit 02e78ed

Please sign in to comment.