From 5f5a89010b50d25f52f8d7732503ade85ca9d97a Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 11 Jun 2024 13:23:27 -0400 Subject: [PATCH] ignore ruff rule related to pairwise preference over zip (#290) * ignore ruff rule related to pairwise preference over zip * remove extra space --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 776b952b..f9267951 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -79,6 +79,8 @@ ignore = [ "S105", "S106", "S107", # Ignore complexity "C901", "PLR0911", "PLR0912", "PLR0913", "PLR0915", + # Pairwise error to ignore + "RUF007" ] unfixable = [ # Don't touch unused imports