gurkult / gurkbot

Our community bot, used for running the server.
MIT License
18 stars 16 forks source link

UserInputErrors are handled improperly #76

Closed vivekashok1221 closed 3 years ago

vivekashok1221 commented 3 years ago

image

As you can see, MissingRequiredArgument is being handled twice. MissingRequiredArgument is derived from UserInputError and is being handled in error_handler.py and an embed is issued. After that, it is again being handled as an unhandled error..

I am not sure why UserInputError is not part of the if-elif block.