useless-try-except (TRY203)
Derived from the tryceratops linter.
What it does
Checks for immediate uses of raise
within exception handlers.
Why is this bad?
Capturing an exception, only to immediately reraise it, has no effect.
Instead, remove the error-handling code and let the exception propagate
upwards without the unnecessary try
-except
block.
Example
Use instead: