Skip to content

Commit

Permalink
Fix small comments issues
Browse files Browse the repository at this point in the history
  • Loading branch information
zabrahams committed Dec 3, 2021
1 parent b97c5ec commit 8d9b5d8
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions city_scrapers/spiders/cle_design_review.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ def parse(self, response):
not a meeting occurred but doesn't have an agenda, or whether a meeting
is going to happen on a normal meeting date. The strategy I'm using is
to treat the agenda links as authoritative for past (and if listed
upcoming) meetings. So previous meetings are just read off of the agenda
links. For future meetings we take the date of the most recent agenda
and then calculate the remaining meetings this year from that date. As
dates progress and agendas are added, those tentative meetings will
either be confirmed to exist or disappear based on the ways the agendas
are updated.
upcoming) meetings. So previous meetings are just read off of the agenda
links. For future meetings we take the date of the most recent agenda
and then calculate meetings for 60 days from that date. As dates
progress and agendas are added, those tentative meetings will either be
confirmed to exist or disappear based on the ways the agendas are
updated.
2. There is no mention of the year anywhere in the text of the site. We
can extract it from the agenda link - at least for now. But it will
be important to keep an eye on how the site is changed in January.
2. There is no mention of the year anywhere in the text of the site. We
can extract it from the agenda link - at least for now. But it will
be important to keep an eye on how the site is changed in January.
3. Meetings are currently not being held in person but over webex. We've
included this information in the time_notes section of the meeting.
Expand Down Expand Up @@ -327,8 +327,7 @@ def _calculate_meeting_days_per_month(
for day, weekday in days_of_the_month
if day != 0 and weekday == chosen_weekday
]
# we then add one to the index and see if the resulting number is in the
# chosen_weeks array
# we then see if the resulting number is in the chosen_weeks array
chosen_days = [
day for i, day in enumerate(potential_days) if (i) in chosen_weeks
]
Expand Down

0 comments on commit 8d9b5d8

Please sign in to comment.