Replace try/except: pass with contextlib.suppress()
Recipe ID
org.openrewrite.python.cleanup.UseContextlibSuppressArtifactopenrewrite-static-analysisWhen an except handler only contains pass, the intent is to suppress the error. contextlib.suppress() states this explicitly and eliminates the try/except boilerplate.
Single recipeProprietary
Usage
This recipe has no required configuration options. You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.python.cleanup.UseContextlibSuppressIf the recipe isn’t available locally, install it with:
mod config recipes pip install openrewrite-static-analysis