diff --git a/recruitmentCog/__init__.py b/recruitmentCog/__init__.py index 1518d6d..abe5c50 100644 --- a/recruitmentCog/__init__.py +++ b/recruitmentCog/__init__.py @@ -2,6 +2,6 @@ from redbot.core import commands from .recruitment import Recruitment -def setup(bot: commands.Bot) -> None: +async def setup(bot: commands.Bot) -> None: cog = Recruitment(bot) - bot.add_cog(cog) \ No newline at end of file + await bot.add_cog(cog) \ No newline at end of file