summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2020-07-23 07:17:21 -0700
committerBob Halley <halley@dnspython.org>2020-07-23 07:17:21 -0700
commitdc590c792b612a75df05b6215e70dbe3a635a8ea (patch)
tree7f3a7529fe567174c6be09cc65d76b5b980cc89e
parentf08f1f87cf89dba5f61c644e818799b5e1dd9a2c (diff)
downloaddnspython-dc590c792b612a75df05b6215e70dbe3a635a8ea.tar.gz
Add no cover for abstract method.
-rw-r--r--dns/enum.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dns/enum.py b/dns/enum.py
index 11536f2..b822dd5 100644
--- a/dns/enum.py
+++ b/dns/enum.py
@@ -75,7 +75,7 @@ class IntEnum(enum.IntEnum):
@classmethod
def _maximum(cls):
- raise NotImplementedError
+ raise NotImplementedError # pragma: no cover
@classmethod
def _short_name(cls):