Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
braykuka committed Oct 27, 2024
1 parent 97b6a4d commit 50bc5be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrapers/in/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def scrape(self):
agenda = event.add_agenda_item("Bills under consideration")

agendas = meeting.get("agenda")
if type(agendas) == str:
if type(agendas) is str:
agendas = json.loads(meeting.get("agenda"))

for agenda_item in agendas:
Expand Down

0 comments on commit 50bc5be

Please sign in to comment.