From e18d35dbf3a828ca9c449a90b5cc4ec729e36a34 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Mon, 30 Oct 2023 10:47:17 -0700 Subject: [PATCH] ruff: Fix PLW0602 Using global but no assignment is done. Signed-off-by: Anders Kaseorg --- zulip/integrations/google/google-calendar | 2 -- 1 file changed, 2 deletions(-) diff --git a/zulip/integrations/google/google-calendar b/zulip/integrations/google/google-calendar index 42479611..278b13db 100755 --- a/zulip/integrations/google/google-calendar +++ b/zulip/integrations/google/google-calendar @@ -160,8 +160,6 @@ def populate_events() -> Optional[None]: def send_reminders() -> Optional[None]: - global sent - messages = [] keys = set() now = datetime.datetime.now(tz=pytz.utc)