From 3694436c35402fdfa63852d7880c4be53682af67 Mon Sep 17 00:00:00 2001 From: Olivier DEBAUCHE Date: Sun, 30 Jun 2024 21:53:45 +0200 Subject: [PATCH] Add ignored code PLR2004 --- ruff.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/ruff.toml b/ruff.toml index 19f5a3a772e..ee22daba371 100644 --- a/ruff.toml +++ b/ruff.toml @@ -24,6 +24,7 @@ ignore = [ "PLR0911", # Too many return statements "PLR0913", # Too many arguments in function definition "PLR0915", # Too many statements + "PLR2004", # Magic value used in comparison ] [lint.per-file-ignores]