Skip to content

Commit

Permalink
NV: Bills: Fix BDR and set 2025 to true to capture prefiles (#5073)
Browse files Browse the repository at this point in the history
  • Loading branch information
showerst authored Nov 5, 2024
1 parent 33d7af7 commit 7d75b82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions scrapers/nv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ class Nevada(State):
"name": "34th (2023) Special Session",
"start_date": "2023-06-06",
"end_date": "2023-06-06",
"active": True,
"active": False,
},
{
"_scraped_name": "35th (2023) Special Session",
Expand All @@ -157,7 +157,7 @@ class Nevada(State):
"name": "35th (2023) Special Session",
"start_date": "2023-06-07",
"end_date": "2023-06-14",
"active": True,
"active": False,
},
{
"_scraped_name": "83rd (2025) Session",
Expand All @@ -167,7 +167,7 @@ class Nevada(State):
# TODO: update dates
"start_date": "2025-02-01",
"end_date": "2025-06-01",
"active": False,
"active": True,
},
]
ignored_scraped_sessions = [
Expand Down
2 changes: 1 addition & 1 deletion scrapers/nv/bills.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def extract_bdr(title):
the number is in the title but it's useful as a structured extra
"""
bdr = False
bdr_regex = re.search(r"\(BDR (\w+-\w+)\)", title)
bdr_regex = re.search(r"\(BDR\u00a0(\w+-\w+)\)", title)
if bdr_regex:
bdr = bdr_regex.group(1)
return bdr
Expand Down

0 comments on commit 7d75b82

Please sign in to comment.