Remove Python2.7 workaround for enum module

This commit is contained in:
Jon Dufresne 2018-09-23 19:59:27 -07:00
parent ff8df59ac1
commit 4264b6ca0c

View File

@ -9,10 +9,7 @@
:license: BSD, see LICENSE for details.
"""
try:
from enum import IntEnum
except ImportError: # py27
IntEnum = object # type: ignore
from enum import IntEnum
class BuildPhase(IntEnum):