Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into k8s-helm
Browse files Browse the repository at this point in the history
  • Loading branch information
c-simpson committed May 28, 2021
2 parents 90c1645 + 21f6203 commit 33eaf69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/pipeline/match_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ def start(connection, added_or_updated_rows, manual_matches_df):
# Exact matches based on specified columns
row_matches = pdp_contacts[
(
((pdp_contacts["first_name_normalized"] == row["first_name_normalized"]) &
(((pdp_contacts["first_name_normalized"] == row["first_name_normalized"]) &
(pdp_contacts["last_name_normalized"] == row["last_name_normalized"]))
|
((pdp_contacts["first_name_normalized"] == row["last_name_normalized"]) &
(pdp_contacts["last_name_normalized"] == row["first_name_normalized"]))
(pdp_contacts["last_name_normalized"] == row["first_name_normalized"])))
&
((pdp_contacts["email_normalized"] == row["email_normalized"]) | (pdp_contacts["mobile"] == row["mobile"]))
)
Expand Down

0 comments on commit 33eaf69

Please sign in to comment.