Fix a bunch of failed imports and types from previous changes

This commit is contained in:
Marc Di Luzio 2024-08-16 10:22:35 +01:00
parent 01e9c98d3f
commit a5d66aca4e
5 changed files with 9 additions and 9 deletions

View file

@ -24,8 +24,8 @@ bot = commands.Bot(command_prefix='$',
@bot.event
async def setup_hook():
await bot.add_cog(matchy.cogs.matchy.Cog(bot, state))
await bot.add_cog(matchy.cogs.owner.Cog(bot, state))
await bot.add_cog(matchy.cogs.matchy.MatchyCog(bot, state))
await bot.add_cog(matchy.cogs.owner.OwnerCog(bot, state))
@bot.event