Skip to content

Commit

Permalink
Merge pull request #4975 from NewAgeAirbender/ny_bills
Browse files Browse the repository at this point in the history
NY: don't verify vote requests
  • Loading branch information
NewAgeAirbender authored Jul 1, 2024
2 parents dda960f + aad1a76 commit 5839747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrapers/ny/bills.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ def scrape_assembly_votes(self, session, bill, assembly_url, bill_id):
# parse the bill data page, finding the latest html text
url = assembly_url + "&Floor%26nbspVotes=Y"

data = self.get(url).text
data = self.get(url, verify=False).text
doc = lxml.html.fromstring(data)
doc.make_links_absolute(url)

Expand Down

0 comments on commit 5839747

Please sign in to comment.