Skip to content

Commit

Permalink
TX: votes fix session ID for 2025
Browse files Browse the repository at this point in the history
  • Loading branch information
jessemortenson committed Jan 20, 2025
1 parent 76d7bac commit 54e8d36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scrapers/tx/votes.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def record_votes_with_short_count_notation(root, session, chamber):
motion_text=motion_text,
result="pass" if mv.passed else "fail",
classification=identify_classification(motion_text, mv.passed),
legislative_session=session[0:2],
legislative_session=session,
bill=mv.bill_id,
bill_chamber=mv.chamber,
)
Expand Down Expand Up @@ -445,7 +445,7 @@ def record_votes_with_yeas(root, session, chamber):
motion_text=motion_text,
result="pass" if mv.passed else "fail",
classification=identify_classification(motion_text, mv.passed),
legislative_session=session[0:2],
legislative_session=session,
bill=mv.bill_id,
bill_chamber=mv.chamber,
)
Expand Down Expand Up @@ -498,7 +498,7 @@ def viva_voce_votes(root, session, chamber):
motion_text=motion_text,
result="pass" if mv.passed else "fail",
classification=identify_classification(motion_text, mv.passed),
legislative_session=session[0:2],
legislative_session=session,
bill=mv.bill_id,
bill_chamber=mv.chamber,
)
Expand Down

0 comments on commit 54e8d36

Please sign in to comment.