← All recipes
Moderne licensed

Use negative index instead of len() offset

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

Rewrite `seq[len(seq) - k] as seq[-k]`, using Python's native negative-indexing support.

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.SimplifyNegativeIndex

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

mod config recipes pip install openrewrite-static-analysis