aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/holidays/halloween/candy_collection.py
diff options
context:
space:
mode:
Diffstat (limited to 'bot/exts/holidays/halloween/candy_collection.py')
-rw-r--r--bot/exts/holidays/halloween/candy_collection.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/holidays/halloween/candy_collection.py b/bot/exts/holidays/halloween/candy_collection.py
index 220ba8e5..ee23ed59 100644
--- a/bot/exts/holidays/halloween/candy_collection.py
+++ b/bot/exts/holidays/halloween/candy_collection.py
@@ -214,6 +214,6 @@ class CandyCollection(commands.Cog):
await ctx.send(embed=e)
-def setup(bot: Bot) -> None:
+async def setup(bot: Bot) -> None:
"""Load the Candy Collection Cog."""
- bot.add_cog(CandyCollection(bot))
+ await bot.add_cog(CandyCollection(bot))