From a894d09b75996277950acd8c14bc5bf04c7cba02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Kudela?= <kudmich@syncad.com> Date: Thu, 27 Feb 2025 11:34:05 +0100 Subject: [PATCH] Update ruff ignore list --- python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index ebd63f8d3..2d46217e3 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -96,7 +96,7 @@ ignore = [ "S101", # Use of assert detected; too restrictive "S603", # `subprocess` call: check for execution of untrusted input; https://github.com/astral-sh/ruff/issues/4045 "ISC001", # Implicitly concatenated string literals on one line; disabled because conflicts with ruff formatter - + "PLR2004", # Ignore "magic value used in comparison" warnings; explicit constants not always necessary in tests ] [tool.ruff.lint.per-file-ignores] -- GitLab