diff options
Diffstat (limited to 'bot/exts/holidays/easter/egg_facts.py')
-rw-r--r-- | bot/exts/holidays/easter/egg_facts.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/holidays/easter/egg_facts.py b/bot/exts/holidays/easter/egg_facts.py index 152af6a4..2fb2041e 100644 --- a/bot/exts/holidays/easter/egg_facts.py +++ b/bot/exts/holidays/easter/egg_facts.py @@ -50,6 +50,6 @@ class EasterFacts(commands.Cog): ) -def setup(bot: Bot) -> None: +async def setup(bot: Bot) -> None: """Load the Easter Egg facts Cog.""" - bot.add_cog(EasterFacts(bot)) + await bot.add_cog(EasterFacts(bot)) |