← All recipes
Moderne licensed

Replace try/except: pass with contextlib.suppress()

Recipe IDorg.openrewrite.python.cleanup.UseContextlibSuppressArtifactopenrewrite-static-analysis

When 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.UseContextlibSuppress

If the recipe isn’t available locally, install it with:

mod config recipes pip install openrewrite-static-analysis