From b915280a5496a1a50e85f8f1f8ab30637e577322 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 1 Jun 2023 22:06:12 +0200 Subject: [PATCH] Attempting to fix recruitmentCog to support Red bot 3.5 --- recruitmentCog/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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