diff options
author | 2022-02-03 18:41:16 +0000 | |
---|---|---|
committer | 2022-02-03 18:41:16 +0000 | |
commit | 3bfd75bda26b73dde5a838d4f7bb979170db9304 (patch) | |
tree | f7110861be5374d5b3e07d12ffd76181e105492b | |
parent | 🚨 Linting fixes (diff) |
👌 Remove redundant parenthesis
-rw-r--r-- | bot/exts/help_channels/_cog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/help_channels/_cog.py b/bot/exts/help_channels/_cog.py index 5dfb09b64..41d5bbe72 100644 --- a/bot/exts/help_channels/_cog.py +++ b/bot/exts/help_channels/_cog.py @@ -79,7 +79,7 @@ class HelpChannels(commands.Cog): self.name_queue: t.Deque[str] = None # Notifications - self.notify_interval_seconds = (constants.HelpChannels.notify_minutes * 60) + self.notify_interval_seconds = constants.HelpChannels.notify_minutes * 60 self.last_none_remaining_notification = arrow.get('1815-12-10T18:00:00.00000+00:00') self.last_running_low_notification = arrow.get('1815-12-10T18:00:00.00000+00:00') |