From afdfbcce7362213d1bb0231ea462a459bef37e8d Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Wed, 20 May 2020 07:16:10 -0700 Subject: [PATCH] raise NotImplememtedError, not NotImplemented --- dns/enum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dns/enum.py b/dns/enum.py index 62b4a446..5bc46fed 100644 --- a/dns/enum.py +++ b/dns/enum.py @@ -62,7 +62,7 @@ class IntEnum(enum.IntEnum): @classmethod def _maximum(cls): - raise NotImplemented + raise NotImplementedError @classmethod def _short_name(cls): -- 2.47.3