diff options
Diffstat (limited to 'bot/exts/holidays/pride/pride_facts.py')
| -rw-r--r-- | bot/exts/holidays/pride/pride_facts.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/holidays/pride/pride_facts.py b/bot/exts/holidays/pride/pride_facts.py index 340f0b43..ae025ae7 100644 --- a/bot/exts/holidays/pride/pride_facts.py +++ b/bot/exts/holidays/pride/pride_facts.py @@ -94,6 +94,6 @@ class PrideFacts(commands.Cog): ) -def setup(bot: Bot) -> None: +async def setup(bot: Bot) -> None: """Load the Pride Facts Cog.""" - bot.add_cog(PrideFacts(bot)) + await bot.add_cog(PrideFacts(bot)) |