Revert IntFlag change until we drop python 3.5 support.

This commit is contained in:
Mike Auty
2019-04-05 22:56:36 +01:00
parent db3c120aa7
commit 5b8645bd1f
@@ -35,7 +35,8 @@ from volatility.framework.symbols.windows import extensions
vollog = logging.getLogger(__name__)
class PoolType(enum.IntFlag):
# TODO: When python3.5 is no longer supported, make this enum.IntFlag
class PoolType(enum.IntEnum):
"""Class to maintain the different possible PoolTypes
The values must be integer powers of 2"""