Answers for "get command line error output discord.py"

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 "get command line error output discord.py"

Python Answers by Framework

Browse Popular Code Answers by Language