Well, I have a command with a cooldown. It shows the cooldown in seconds, but I want it to be in hours:minutes:seconds. Since I'm still very new to Python. I need a little help. This is my Code:
@client.event
async def on_command_error(ctx, error):
if isinstance(error, commands.BadArgument):
await ctx.send("User existiert nicht!")
if isinstance(error, commands.CommandOnCooldown):
msg = f'**Du bist in einem Cooldown** Versuch es in {round(error.retry_after)} Sekunden erneut.'
await ctx.send(msg)