diff --git a/scrapers/hi/bills.py b/scrapers/hi/bills.py index 3226a7c52c..f640460851 100644 --- a/scrapers/hi/bills.py +++ b/scrapers/hi/bills.py @@ -137,7 +137,7 @@ def parse_bill_actions_table( vote.set_count("yes", int(yays or 0)) vote.set_count("no", int(nays or 0)) vote.set_count("not voting", int(v["n_excused"] or 0)) - vote.dedupe_key = string[:300] + vote.dedupe_key = f"{bill_id}#{date}#{string[:300]}" for voter in split_specific_votes(v["yes"]): voter = self.clean_voter_name(voter) vote.yes(voter)