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

GA: activate 2025 session #5216

Merged
merged 1 commit into from
Jan 14, 2025
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
4 changes: 2 additions & 2 deletions scrapers/ga/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class Georgia(State):
"name": "2023-2024 Regular Session",
"start_date": "2023-01-09",
"end_date": "2024-04-02",
"active": True,
"active": False,
},
{
"_scraped_name": "2023 Special Session",
Expand All @@ -104,7 +104,7 @@ class Georgia(State):
"name": "2025-2026 Regular Session",
"start_date": "2025-01-13",
"end_date": "2026-04-02",
"active": False,
"active": True,
},
]
ignored_scraped_sessions = [
Expand Down
6 changes: 3 additions & 3 deletions scrapers/ga/bills.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def scrape(self, session=None, chamber=None):
"other", listed_vote["Excused"] + listed_vote["NotVoting"]
)

vote.add_source(self.vsource)
vote.add_source(self.vsource, note="api")
vote.dedupe_key = f"{bill}#{date}#{text}"

methods = {"Yea": "yes", "Nay": "no"}
Expand Down Expand Up @@ -316,8 +316,8 @@ def scrape(self, session=None, chamber=None):
"_version_id": version_id,
}

bill.add_source(self.msource)
bill.add_source(self.lsource)
bill.add_source(self.msource, note="api")
bill.add_source(self.lsource, note="api")
bill.add_source(SOURCE_URL.format(**{"session": session, "bid": guid}))

yield bill
Loading