From 88358322836e4f9fc69e3546d614667c73535e3f Mon Sep 17 00:00:00 2001 From: unknown Date: Sun, 12 Mar 2023 17:12:16 +0100 Subject: [PATCH] Trying something wild --- recruitmentCog/__init__.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/recruitmentCog/__init__.py b/recruitmentCog/__init__.py index 67ad7f3..7f586f2 100644 --- a/recruitmentCog/__init__.py +++ b/recruitmentCog/__init__.py @@ -1,5 +1,7 @@ -from redbot.core.bot import Red from .recruitment import Recruitment +from redbot.core.bot import Red -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)) +##async def setup(bot: Red) -> None: +## await bot.add_cog(Recruitment(bot)) \ No newline at end of file