From 08a0b6b0883d0203059657e41ffa42f7e485bbbd Mon Sep 17 00:00:00 2001 From: Grzegorz Bokota Date: Thu, 2 Mar 2023 00:48:28 +0100 Subject: [PATCH] disable RUF005 https://github.com/charliermarsh/ruff/issues/2142#issuecomment-1451038741 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index e1c231545ee..40504049b9a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -106,6 +106,7 @@ ignore = [ "Q000", "RET504", # not fixed yet https://github.com/charliermarsh/ruff/issues/2950 "TRY003", # require implement multiple exception class + "RUF005", # problem with numpy compatybility, see https://github.com/charliermarsh/ruff/issues/2142#issuecomment-1451038741 ]