Skip to content

Commit

Permalink
WV: remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
showerst committed Jan 7, 2025
1 parent 663a1e1 commit b67781a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions scrapers/wv/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ def scrape_meeting_page(self, url):
yield event

def clean_date(self, when):
print(f"before {when}")
# Remove all text after the third comma to make sure no extra text
# is included in the date. Required to correctly parse text like this:
# "Friday, March 3, 2023, Following wrap up of morning agenda"
Expand Down Expand Up @@ -203,6 +202,4 @@ def clean_date(self, when):
# ?Chart=agr&input=March%201,%202022
if when == "March 1, 2022, PM":
when = "March 1, 2022, 1:00 PM"

print(f"after {when}")
return when

0 comments on commit b67781a

Please sign in to comment.