diff --git a/main.py b/main.py index 2498d2b2..0039dd15 100644 --- a/main.py +++ b/main.py @@ -163,11 +163,8 @@ async def _ping(ctx): @is_owner() async def leave(ctx): """Leaves the guild""" - try: - await ctx.send("**Leaving the guild... Bye Bye uvu**") - await ctx.guild.leave() - except Exception as ex: - print(ex) + await ctx.send("**Leaving the guild... Bye Bye uvu**") + await ctx.guild.leave() @client.command(name='help')