suppressible-exception (SIM105)
Added in v0.0.211 · Related issues · View source
Derived from the flake8-simplify linter.
Fix is sometimes available.
What it does
Checks for try-except-pass blocks that can be replaced with the
contextlib.suppress context manager.
Why is this bad?
Using contextlib.suppress is more concise and directly communicates the
intent of the code: to suppress a given exception.
Note that contextlib.suppress is slower than using try-except-pass
directly. For performance-critical code, consider retaining the
try-except-pass pattern.
Example
Use instead: