diff options
author | 2021-05-04 15:44:31 -0400 | |
---|---|---|
committer | 2021-05-04 15:44:31 -0400 | |
commit | 6d31315fa72ca9e6ccd7553e78548fed6e5e4829 (patch) | |
tree | 59632d71bab9bfcb5387743ab8d263d394f13943 /bot/exts/evergreen/timed.py | |
parent | Apply suggested changes to hanukkah_embed.py (diff) |
fix: Pass bot only when __init__ is defined
Diffstat (limited to 'bot/exts/evergreen/timed.py')
-rw-r--r-- | bot/exts/evergreen/timed.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/timed.py b/bot/exts/evergreen/timed.py index 42a77346..491231cc 100644 --- a/bot/exts/evergreen/timed.py +++ b/bot/exts/evergreen/timed.py @@ -45,4 +45,4 @@ class TimedCommands(commands.Cog): def setup(bot: Bot) -> None: """Load the Timed cog.""" - bot.add_cog(TimedCommands(bot)) + bot.add_cog(TimedCommands()) |