From 2333e6ec2c2788a1f2ee3b56d522a7955bf36736 Mon Sep 17 00:00:00 2001 From: Falko Schindler Date: Tue, 8 Oct 2024 07:06:29 +0200 Subject: [PATCH] try to fix checks --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 57de6065..b5e614b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -113,6 +113,7 @@ disable = [ "R0913", # Too many arguments "R0914", # Too many local variables "R0915", # Too many statements + "R0917", # Too many positional arguments "R1702", # Too many nested blocks "R1705", # Unnecessary "else" after "return" "R1724", # Unnecessary "else" after "continue" @@ -154,6 +155,5 @@ ignore = [ "PLR0912", # too many branches "PLR0913", # too many arguments "PLR0915", # too many statements - "PLR0917", # too many positional arguments "PLR2004", # magic value comparison ]