mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-02 14:28:58 +02:00
Code Review (style): Use keyword args for clarity
This updates a whole host of method calls to pass keyword arguments instead of positional arguments.
This commit is contained in:
@@ -44,7 +44,7 @@ class Bash(plugins.PluginInterface, timeliner.TimeLinerInterface):
|
||||
def _generator(self, tasks):
|
||||
darwin = self.context.modules[self.config["kernel"]]
|
||||
is_32bit = not symbols.symbol_table_is_64bit(
|
||||
self.context, darwin.symbol_table_name
|
||||
context=self.context, symbol_table_name=darwin.symbol_table_name
|
||||
)
|
||||
if is_32bit:
|
||||
pack_format = "I"
|
||||
|
||||
Reference in New Issue
Block a user