mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-10 19:57:39 +02:00
Don't use mutable defaults.
This commit is contained in:
@@ -161,7 +161,7 @@ class PoolScanner(plugins.PluginInterface):
|
||||
yield (0, (constraint.type_name, format_hints.Hex(header.vol.offset), header.vol.layer_name, name))
|
||||
|
||||
@staticmethod
|
||||
def builtin_constraints(symbol_table: str, tags_filter: List[bytes] = []) -> List[PoolConstraint]:
|
||||
def builtin_constraints(symbol_table: str, tags_filter: List[bytes] = None) -> List[PoolConstraint]:
|
||||
"""Get built-in PoolConstraints given a list of pool tags.
|
||||
|
||||
The tags_filter is a list of pool tags, and the associated
|
||||
|
||||
Reference in New Issue
Block a user