summaryrefslogtreecommitdiff
path: root/dns/enum.py
diff options
context:
space:
mode:
Diffstat (limited to 'dns/enum.py')
-rw-r--r--dns/enum.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/dns/enum.py b/dns/enum.py
index b822dd5..9c67488 100644
--- a/dns/enum.py
+++ b/dns/enum.py
@@ -17,6 +17,7 @@
import enum
+
class IntEnum(enum.IntEnum):
@classmethod
def _check_value(cls, value):
@@ -33,8 +34,8 @@ class IntEnum(enum.IntEnum):
except KeyError:
pass
prefix = cls._prefix()
- if text.startswith(prefix) and text[len(prefix):].isdigit():
- value = int(text[len(prefix):])
+ if text.startswith(prefix) and text[len(prefix) :].isdigit():
+ value = int(text[len(prefix) :])
cls._check_value(value)
try:
return cls(value)
@@ -83,7 +84,7 @@ class IntEnum(enum.IntEnum):
@classmethod
def _prefix(cls):
- return ''
+ return ""
@classmethod
def _unknown_exception_class(cls):