From 5adc900767c08999ea765d9767d8dd5b9c0039c2 Mon Sep 17 00:00:00 2001 From: unknown Date: Sun, 12 Mar 2023 18:20:53 +0100 Subject: [PATCH] Trying to debug a few mistakes --- recruitmentCog/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recruitmentCog/__init__.py b/recruitmentCog/__init__.py index 3ee50ed..603285c 100644 --- a/recruitmentCog/__init__.py +++ b/recruitmentCog/__init__.py @@ -1,6 +1,6 @@ -import asyncio -from .recruitment import Recruitment from redbot.core.bot import Red +from .recruitment import Recruitment + async def setup(bot: Red) -> None: - await asyncio.ensure_future(bot.add_cog(Recruitment(bot))) \ No newline at end of file + await bot.add_cog(Recruitment(bot)) \ No newline at end of file