diff --git a/volatility/plugins/windows/poolscanner.py b/volatility/plugins/windows/poolscanner.py index d14ad03b4..8de63cb9e 100644 --- a/volatility/plugins/windows/poolscanner.py +++ b/volatility/plugins/windows/poolscanner.py @@ -2,7 +2,7 @@ import enum import logging import typing -from volatility.framework import interfaces, validity, objects, renderers, constants +from volatility.framework import constants, interfaces, objects, renderers, validity from volatility.framework.configuration import requirements from volatility.framework.interfaces import plugins from volatility.framework.layers import scanners @@ -13,10 +13,7 @@ vollog = logging.getLogger(__name__) class PoolType(enum.IntEnum): """Class to maintain the different possible PoolTypes - The values must be integer powers of 2 - - FIXME: This can be removed and replaced with enum.IntFlag after python3.5 is deprecated - """ + The values must be integer powers of 2""" PAGED = 1 NONPAGED = 2