Skip to content

Commit

Permalink
Merge pull request #4711 from NewAgeAirbender/fl_bills
Browse files Browse the repository at this point in the history
FL: ignore 2023C for now
  • Loading branch information
NewAgeAirbender authored Oct 25, 2023
2 parents 80c6432 + fca7649 commit 5bed840
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions scrapers/fl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,18 +203,26 @@ 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": "2024 Regular Session",
"identifier": "2024",
"classification": "primary",
# TODO: Update End Date
"start_date": "2024-01-09",
"end_date": "2024-03-11",
"end_date": "2024-03-08",
"active": True,
},
]
ignored_scraped_sessions = [
*(str(each) for each in range(1997, 2010)),
"2023C",
"2022 Org.",
"2020 Org.",
"2019 I", # Empty, maybe informational session
Expand Down

0 comments on commit 5bed840

Please sign in to comment.