Skip to content

Commit

Permalink
MT: fix for excused committee votes (#5231)
Browse files Browse the repository at this point in the history
MT: excused committee votes
  • Loading branch information
showerst authored Jan 17, 2025
1 parent feda812 commit 363812d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scrapers/mt/bills.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,6 +537,8 @@ def scrape_votes_page(self, vote_url: str, bill: Bill):
vote.no(voter)
elif v[vote_type_key] == "ABSENT":
vote.vote("absent", voter)
elif v[vote_type_key] == "EXCUSED":
vote.vote("excused", voter)
else:
self.error(v)
raise NotImplementedError
Expand Down

0 comments on commit 363812d

Please sign in to comment.