removed try/except block when adding cog, as sparky does that now

This commit is contained in:
phixxy 2024-02-04 00:21:35 -08:00
parent 70f008bf82
commit c7fe4b2c2a
10 changed files with 12 additions and 53 deletions

View file

@ -113,8 +113,4 @@ class Meme(commands.Cog):
await ctx.send('Something went wrong try again. Usage: !meme (topic)')
async def setup(bot):
try:
await bot.add_cog(Meme(bot))
bot.logger.info("Successfully added Meme Cog")
except:
bot.logger.info("Failed to load Meme Cog")
await bot.add_cog(Meme(bot))