Skip to content

Commit

Permalink
Update cle_city_council.py
Browse files Browse the repository at this point in the history
line#21: change from NoneType to None
  • Loading branch information
haileyhoyat authored Oct 22, 2022
1 parent aee926e commit f7dfdfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion city_scrapers/spiders/cle_city_council.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def parse_legistar(self, events):
needs.
"""
for event in events:
if (self.legistar_start(event) is NoneType):
if (self.legistar_start(event) is None):
return
else:
meeting = Meeting(
Expand Down

0 comments on commit f7dfdfc

Please sign in to comment.