Skip to content

Commit

Permalink
Merge pull request #4714 from NewAgeAirbender/fl_bills
Browse files Browse the repository at this point in the history
FL: add 2023C to active sessions
  • Loading branch information
NewAgeAirbender authored Nov 3, 2023
2 parents 6a9dd5f + 09d5c85 commit 90c3a62
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
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

0 comments on commit 90c3a62

Please sign in to comment.