Removed await

This commit is contained in:
unknown 2023-03-12 18:31:06 +01:00
parent a0024215f9
commit 1ea5f9a6a3

View File

@ -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))
def setup(bot: Red):
bot.add_cog(Recruitment(bot))