Skip to content

Commit

Permalink
WA: Skip their test bills (#5028)
Browse files Browse the repository at this point in the history
  • Loading branch information
showerst authored Sep 12, 2024
1 parent 9acb7e8 commit 90d2efe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scrapers/wa/bills.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,10 @@ def scrape_bill(self, chamber, session, bill_id, year):

title = xpath(page, "string(wa:LongDescription)")

if "TEST BILL FOR" in title.upper():
self.info("Skipping test bill.")
return

bill_type = xpath(
page, "string(wa:ShortLegislationType/wa:LongLegislationType)"
)
Expand Down

0 comments on commit 90d2efe

Please sign in to comment.