Answers for "on_command error discord.py how to line no."

1

discord.py on command error

@client.event() #Replace 'client' with whatever neccesary
async def on_command_error(ctx, error):
  if isinstance(error, commands.MissingRequiredArguments):
    # Replace MissingRequiredArguments with your error
    ctx.send("Please pass all required arguments")
Posted by: Guest on April-07-2021

Code answers related to "on_command error discord.py how to line no."

Python Answers by Framework

Browse Popular Code Answers by Language