Skip to content

Commit

Permalink
GA: activate 2025 session
Browse files Browse the repository at this point in the history
  • Loading branch information
jessemortenson committed Jan 14, 2025
1 parent 83865e3 commit d74b27a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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

0 comments on commit d74b27a

Please sign in to comment.