diff options
| author | Bob Halley <halley@dnspython.org> | 2020-07-23 07:17:21 -0700 |
|---|---|---|
| committer | Bob Halley <halley@dnspython.org> | 2020-07-23 07:17:21 -0700 |
| commit | dc590c792b612a75df05b6215e70dbe3a635a8ea (patch) | |
| tree | 7f3a7529fe567174c6be09cc65d76b5b980cc89e | |
| parent | f08f1f87cf89dba5f61c644e818799b5e1dd9a2c (diff) | |
| download | dnspython-dc590c792b612a75df05b6215e70dbe3a635a8ea.tar.gz | |
Add no cover for abstract method.
| -rw-r--r-- | dns/enum.py | 2 |
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): |
