]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
more minor lint tweaks
authorBob Halley <halley@dnspython.org>
Fri, 18 Oct 2024 17:17:53 +0000 (10:17 -0700)
committerBob Halley <halley@dnspython.org>
Fri, 18 Oct 2024 17:17:53 +0000 (10:17 -0700)
.pylintrc
dns/enum.py

index 28e105a45c83d116fba6b50a2e0c0576be017cbc..d0154841e8ca6796f5a4a10ff22b99093d1263b1 100644 (file)
--- a/.pylintrc
+++ b/.pylintrc
@@ -35,6 +35,7 @@ disable=
     useless-super-delegation, # not against this, but we have to do it for mypy happiness
     use-implicit-booleaness-not-comparison-to-zero,  # I often prefer non-implicit booleaness.
     use-implicit-booleaness-not-comparison-to-string,
+    unused-argument,
 
 [REPORTS]
 
index d7f2618702435d6127eb9ec32060e87ca0fcb6b0..324c85da93976439e4959f63fd4253b619649f54 100644 (file)
@@ -18,8 +18,6 @@
 import enum
 from typing import Any, Optional, Type, TypeVar, Union
 
-import dns.exception
-
 TIntEnum = TypeVar("TIntEnum", bound="IntEnum")