From 4afb087594a7af3d13e1f41b0d7e649cb2e6d139 Mon Sep 17 00:00:00 2001 From: Arnaud Patard Date: Wed, 28 Jun 2023 15:01:04 +0200 Subject: [PATCH] Silence FIX related ruff errors For the same reasons as in commit d70bfa5f63a67a0ea89b0f859299bf2bf337c7e5 ("Address new ruff errors"), silence FIX002 errors. Signed-off-by: Arnaud Patard --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index b98baa0b..5312fe11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -108,6 +108,7 @@ ignore = [ "S", # not sure we'll open a bug for every TODO. "TD003", + "FIX002", "TRY", ] select = ["ALL"]