Skip to content

Commit

Permalink
GU: Bills: Widen regex for alternate whitespace chars (#4710)
Browse files Browse the repository at this point in the history
  • Loading branch information
showerst authored Oct 23, 2023
1 parent 0a4410f commit 80c6432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrapers/gu/bills.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class GUBillScraper(Scraper):
filtered_details = ["BILL HISTORY", "Bill HISTORY", "CLERKS OFFICE", "Page 1"]
date_re = re.compile("([0-9]{1,2}/[0-9]{1,2}/[0-9]{2,4})")
date_time_re = re.compile(
r"([0-9]{1,2}/[0-9]{1,2}/[0-9]{2,4}\s?\n?[0-9]{1,2}:[0-9]{2} [apAP]\.?[mM]\.?)",
r"([0-9]{1,2}/[0-9]{1,2}/[0-9]{2,4}\s?\n?[0-9]{1,2}:[0-9]{2}\s[apAP]\.?[mM]\.?)",
)
committee_re = re.compile("([cC]ommittee on [a-zA-Z, \n]+)")

Expand Down

0 comments on commit 80c6432

Please sign in to comment.