]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
disable ruff UP031
authorBob Halley <halley@dnspython.org>
Wed, 27 Nov 2024 19:38:05 +0000 (11:38 -0800)
committerBob Halley <halley@dnspython.org>
Wed, 27 Nov 2024 19:38:12 +0000 (11:38 -0800)
pyproject.toml

index d16c078d373e8b520830ac259221975e0d3f35bb..1b2d5064d3357e131870773990f8042d0006c793 100644 (file)
@@ -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]