diff options
Diffstat (limited to 'bot/exts/holidays/pride/pride_anthem.py')
| -rw-r--r-- | bot/exts/holidays/pride/pride_anthem.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/holidays/pride/pride_anthem.py b/bot/exts/holidays/pride/pride_anthem.py index e8a4563b..6b78cba1 100644 --- a/bot/exts/holidays/pride/pride_anthem.py +++ b/bot/exts/holidays/pride/pride_anthem.py @@ -46,6 +46,6 @@ class PrideAnthem(commands.Cog):              await ctx.send("I couldn't find a video, sorry!") -def setup(bot: Bot) -> None: +async def setup(bot: Bot) -> None:      """Load the Pride Anthem Cog.""" -    bot.add_cog(PrideAnthem()) +    await bot.add_cog(PrideAnthem())  |