From 3382703e27e11022a35f89920bdd43979bf84d32 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 14 Mar 2023 22:49:13 +0100 Subject: [PATCH] Ruff: Ignore new rule PLC1901 --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5944a2db79..dff3dd5576 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -105,6 +105,7 @@ addopts = "--cov=codespell_lib -rs --cov-report= --tb=short --junit-xml=junit-re extend-ignore = [ "ANN101", "B904", + "PLC1901", "PLW2901", ] line-length = 88 @@ -112,7 +113,7 @@ select = [ "A", "ANN", "B", - "C4", + "C40", "C9", "E", "F",