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

ID, OR: Ignore empty 2024 for now #4742

Merged
merged 1 commit into from
Dec 4, 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
10 changes: 10 additions & 0 deletions scrapers/id/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,19 @@ class Idaho(State):
"end_date": "2023-03-31",
"active": True,
},
# {
# "_scraped_name": "2024 Session",
# "classification": "primary",
# "identifier": "2024",
# "name": "67th Legislature, 2nd Regular Session (2024)",
# "start_date": "2024-01-08",
# "end_date": "2024-03-29",
# "active": True,
# },
]
ignored_scraped_sessions = [
"2021 Session",
"2024 Session",
"2020 Session",
"2010 Session",
"2009 Session",
Expand Down
1 change: 1 addition & 0 deletions scrapers/or/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ class Oregon(State):
},
]
ignored_scraped_sessions = [
"Mock Session 2024",
"2023-2024 Interim",
"Mock Session 2023",
"2021-2022 Interim",
Expand Down