Reorder comparisons to put literals on the right
Recipe ID
org.openrewrite.python.cleanup.FlipComparisonArtifactopenrewrite-static-analysisSwap operands when a constant appears on the left of a comparison, e.g. `42 == count becomes count == 42`, mirroring the relational operator as needed.
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.FlipComparisonIf the recipe isn’t available locally, install it with:
mod config recipes pip install openrewrite-static-analysis