From 1ea5f9a6a3f671f370b77cbb5ecf754e357225c3 Mon Sep 17 00:00:00 2001 From: unknown Date: Sun, 12 Mar 2023 18:31:06 +0100 Subject: [PATCH] Removed await --- recruitmentCog/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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))