From: Bob Halley Date: Thu, 23 Jul 2020 14:17:21 +0000 (-0700) Subject: Add no cover for abstract method. X-Git-Tag: v2.1.0rc1~152 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc590c792b612a75df05b6215e70dbe3a635a8ea;p=thirdparty%2Fdnspython.git Add no cover for abstract method. --- diff --git a/dns/enum.py b/dns/enum.py index 11536f2b..b822dd51 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):