Attempting to fix recruitmentCog to support Red bot 3.5

This commit is contained in:
unknown 2023-06-01 22:06:12 +02:00
parent f96ed87d20
commit b915280a54

View File

@ -2,6 +2,6 @@ from redbot.core import commands
from .recruitment import Recruitment from .recruitment import Recruitment
def setup(bot: commands.Bot) -> None: async def setup(bot: commands.Bot) -> None:
cog = Recruitment(bot) cog = Recruitment(bot)
bot.add_cog(cog) await bot.add_cog(cog)