From afdfbcce7362213d1bb0231ea462a459bef37e8d Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Wed, 20 May 2020 07:16:10 -0700 Subject: raise NotImplememtedError, not NotImplemented --- dns/enum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dns/enum.py') diff --git a/dns/enum.py b/dns/enum.py index 62b4a44..5bc46fe 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): -- cgit v1.2.1