Removing try/except

pull/8/head
sgoudham 4 years ago
parent 6508f8b55f
commit fdc6f59d63

@ -308,10 +308,7 @@ class Info(commands.Cog):
for name, value, inline in fields:
stats.add_field(name=name, value=value, inline=inline)
try:
await ctx.send(embed=stats)
except Exception as e:
print(e)
await ctx.send(embed=stats)
def setup(bot):

Loading…
Cancel
Save