From e6373b626abf1180c20c242ebefd15aa7bec1a57 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Wed, 27 Nov 2024 11:38:05 -0800 Subject: [PATCH] disable ruff UP031 --- pyproject.toml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d16c078d..1b2d5064 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -103,7 +103,17 @@ lint.select = [ # isort "I", ] -lint.ignore = ["E501", "E741", "F401", "I001", "B904", "B011", "UP006", "UP035"] +lint.ignore = [ + "E501", + "E741", + "F401", + "I001", + "B904", + "B011", + "UP006", + "UP031", + "UP035", +] lint.exclude = ["tests/*"] [tool.isort] -- 2.47.3