However, the requirement had a default value, but was never used :
requirements.BooleanRequirement(
name="layer_debug",
optional=True,
description="Specify if debugging informations about the layer should be printed to user.",
default=False,
),
This PR fixes the issue, as self.default wasn't used anywhere, and is still None by default.
While running Volatility with
-vvv
, I noticed the following recurring messages :However, the requirement had a default value, but was never used :
This PR fixes the issue, as
self.default
wasn't used anywhere, and is stillNone
by default.