Skip to content

Commit

Permalink
Merge pull request #4875 from NewAgeAirbender/il_bills
Browse files Browse the repository at this point in the history
IL: Action Classification Tweaks
  • Loading branch information
NewAgeAirbender authored Mar 7, 2024
2 parents e8868b0 + 36eae49 commit fdc5150
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scrapers/il/bills.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@
(re.compile(r"Arrived? in"), ["introduction"]),
(re.compile(r"First Reading"), ["reading-1"]),
(re.compile(r"(Recalled to )?Second Reading"), ["reading-2"]),
(re.compile(r"(Re-r|R)eferred to"), ["referral-committee"]),
(re.compile(r"(Re-a|A)ssigned to"), ["referral-committee"]),
(re.compile(r"Sent to the Governor"), ["executive-receipt"]),
(re.compile(r"Governor Approved"), ["executive-signature"]),
Expand All @@ -150,7 +149,7 @@
(re.compile(r".*Be Adopted(?: as Amended)?"), ["committee-passage-favorable"]),
(re.compile(r"Third Reading .+? Passed"), ["reading-3", "passage"]),
(re.compile(r"Third Reading .+? Lost"), ["reading-3", "failure"]),
(re.compile(r"Third Reading"), ["reading-3"]),
(re.compile(r"Third Reading ((?!Deadline).)"), ["reading-3"]),
(re.compile(r"Resolution Adopted"), ["passage"]),
(re.compile(r"Resolution Lost"), ["failure"]),
(re.compile(r"Session Sine Die"), ["failure"]),
Expand Down

0 comments on commit fdc5150

Please sign in to comment.