From 6a6acd2dccfd5a91e9fd71ec65fafd25d104c21a Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Wed, 30 May 2018 18:37:29 +0100 Subject: [PATCH] Move the table_mapping parameter to avoid disrupting the previous interface. --- volatility/framework/symbols/intermed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/framework/symbols/intermed.py b/volatility/framework/symbols/intermed.py index 5b8602944..e6bf571c0 100644 --- a/volatility/framework/symbols/intermed.py +++ b/volatility/framework/symbols/intermed.py @@ -57,8 +57,8 @@ class IntermediateSymbolTable(interfaces.symbols.SymbolTableInterface): config_path: str, name: str, isf_url: str, - table_mapping: typing.Optional[typing.Dict[str, str]] = None, native_types: interfaces.symbols.NativeTableInterface = None, + table_mapping: typing.Optional[typing.Dict[str, str]] = None, validate: bool = True) -> None: """Instantiates an SymbolTable based on an IntermediateSymbolFormat JSON file. This is validated against the appropriate schema. The validation can be disabled by passing validate = False, but this should almost never be