]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Add no cover for abstract method.
authorBob Halley <halley@dnspython.org>
Thu, 23 Jul 2020 14:17:21 +0000 (07:17 -0700)
committerBob Halley <halley@dnspython.org>
Thu, 23 Jul 2020 14:17:21 +0000 (07:17 -0700)
dns/enum.py

index 11536f2b2788ca2bd35ec2cb13eae1903e7e4db9..b822dd51de34ee32e1f95cdcc6bdd6f0abdd96c6 100644 (file)
@@ -75,7 +75,7 @@ class IntEnum(enum.IntEnum):
 
     @classmethod
     def _maximum(cls):
-        raise NotImplementedError
+        raise NotImplementedError  # pragma: no cover
 
     @classmethod
     def _short_name(cls):