diff --git a/examples/remarketing/upload_enhanced_conversions_for_web.py b/examples/remarketing/upload_enhanced_conversions_for_web.py index ab0e2b808..750e0a573 100644 --- a/examples/remarketing/upload_enhanced_conversions_for_web.py +++ b/examples/remarketing/upload_enhanced_conversions_for_web.py @@ -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]