From 4182cf2223f58ba5086e4ffb6458056321198955 Mon Sep 17 00:00:00 2001 From: correctmost <134317971+correctmost@users.noreply.github.com> Date: Thu, 8 May 2025 15:58:35 -0400 Subject: [PATCH] Disable the loop-iterator-mutation rule in ruff This allows ruff check --preview to succeed again. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 948db5ea78..828143a4b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -216,6 +216,7 @@ ignore = [ "B008", # function-call-in-default-argument "B904", # raise-without-from-inside-except "B905", # zip-without-explicit-strict + "B909", # loop-iterator-mutation "COM812", # missing-trailing-comma "PLC0415", # import-outside-top-level "PLC1901", # compare-to-empty-string