From 7531c4fb26b76d5ef0d81ba1dee8b204854529df Mon Sep 17 00:00:00 2001 From: Aditya Bansal Date: Thu, 1 Jun 2017 01:34:31 +0530 Subject: [PATCH] pep8: Add compliance with rule E261 google/google-calendar. --- integrations/google/google-calendar | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integrations/google/google-calendar b/integrations/google/google-calendar index 7b78e3b..73cc5b5 100755 --- a/integrations/google/google-calendar +++ b/integrations/google/google-calendar @@ -130,7 +130,7 @@ def populate_events(): event_timezone = pytz.timezone(event["start"]["timeZone"]) # pytz timezones include an extra localize method that's not part # of the tzinfo base class. - start = event_timezone.localize(start) # type: ignore + start = event_timezone.localize(start) # type: ignore except KeyError: # All-day events can have only a date. start_naive = dateutil.parser.parse(event["start"]["date"]) @@ -140,7 +140,7 @@ def populate_events(): calendar_timezone = pytz.timezone(feed["timeZone"]) # pytz timezones include an extra localize method that's not part # of the tzinfo base class. - start = calendar_timezone.localize(start_naive) # type: ignore + start = calendar_timezone.localize(start_naive) # type: ignore try: events.append((event["id"], start, event["summary"]))