From 229666d6ba579b9dace9c71f7564e1207aa20288 Mon Sep 17 00:00:00 2001 From: unknown Date: Sun, 12 Mar 2023 18:08:32 +0100 Subject: [PATCH] Trying to get it to run again --- recruitmentCog/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recruitmentCog/__init__.py b/recruitmentCog/__init__.py index 2b47e49..3ee50ed 100644 --- a/recruitmentCog/__init__.py +++ b/recruitmentCog/__init__.py @@ -1,5 +1,6 @@ +import asyncio 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 + await asyncio.ensure_future(bot.add_cog(Recruitment(bot))) \ No newline at end of file