diff --git a/recruitmentCog/__init__.py b/recruitmentCog/__init__.py index 67ad7f3..859180d 100644 --- a/recruitmentCog/__init__.py +++ b/recruitmentCog/__init__.py @@ -1,5 +1,6 @@ from redbot.core.bot import Red from .recruitment import Recruitment -async def setup(bot: Red) -> None: - await bot.add_cog(Recruitment(bot)) \ No newline at end of file + +def setup(bot: Red): + bot.add_cog(Recruitment(bot))