From f3733c164daa7c67c91ebe3d75c756210d28833a Mon Sep 17 00:00:00 2001 From: Jesse Mortenson Date: Thu, 21 Nov 2024 13:16:00 -0600 Subject: [PATCH] IN: fix linting --- scrapers/in/events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapers/in/events.py b/scrapers/in/events.py index 09cf0feb7c..611b102b90 100644 --- a/scrapers/in/events.py +++ b/scrapers/in/events.py @@ -69,7 +69,7 @@ def scrape(self): else: when = dateutil.parser.parse(date_str).date() all_day = True - if "customstart" in meeting and meeting['customstart'] != "": + if "customstart" in meeting and meeting["customstart"] != "": custom_start_string = f" - {meeting['customstart']}" location = meeting["location"] or "See Agenda"