From 54e8d3625f5db26db0e76618b45605a94a677395 Mon Sep 17 00:00:00 2001 From: Jesse Mortenson Date: Mon, 20 Jan 2025 17:30:51 -0600 Subject: [PATCH] TX: votes fix session ID for 2025 --- scrapers/tx/votes.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scrapers/tx/votes.py b/scrapers/tx/votes.py index d80f89244d..202ef0e5d3 100644 --- a/scrapers/tx/votes.py +++ b/scrapers/tx/votes.py @@ -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, ) @@ -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, ) @@ -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, )