From 5cd5d714e912b1a56fa2699b01003ee5a2d8297a Mon Sep 17 00:00:00 2001 From: correctmost <134317971+correctmost@users.noreply.github.com> Date: Thu, 8 May 2025 17:28:56 -0400 Subject: [PATCH] Disable the loop-iterator-mutation rule in ruff (#3450) 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 948db5ea..828143a4 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