Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FL: add 2023C to active sessions #4714

Merged
merged 1 commit into from
Nov 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions scrapers/fl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,14 +203,14 @@ class Florida(State):
"end_date": "2023-02-10",
"active": False,
},
# {
# "name": "2023 Special Session C",
# "identifier": "2023C",
# "classification": "special",
# "start_date": "2023-11-06",
# "end_date": "2023-11-09",
# "active": True,
# },
{
"name": "2023 Special Session C",
"identifier": "2023C",
"classification": "special",
"start_date": "2023-11-06",
"end_date": "2023-11-09",
"active": True,
},
{
"name": "2024 Regular Session",
"identifier": "2024",
Expand All @@ -222,7 +222,6 @@ class Florida(State):
]
ignored_scraped_sessions = [
*(str(each) for each in range(1997, 2010)),
"2023C",
"2022 Org.",
"2020 Org.",
"2019 I", # Empty, maybe informational session
Expand Down
1 change: 1 addition & 0 deletions scrapers/fl/bills.py
Original file line number Diff line number Diff line change
Expand Up @@ -609,6 +609,7 @@ def get_source_from_input(self):
bill_number = re.search(r"^\w+\s(\d+\w*)$", self.input.identifier).group(1)
session_number = {
"2024": "103",
"2023C": "104",
"2023B": "102",
"2022A": "101",
"2023": "99",
Expand Down