From: Bob Halley Date: Wed, 27 Nov 2024 19:38:05 +0000 (-0800) Subject: disable ruff UP031 X-Git-Tag: v2.8.0rc1~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6373b626abf1180c20c242ebefd15aa7bec1a57;p=thirdparty%2Fdnspython.git disable ruff UP031 --- 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]