mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-26 03:24:50 +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:
@@ -84,7 +84,9 @@ class PsScan(interfaces.plugins.PluginInterface):
|
||||
vmlinux = context.modules[vmlinux_module_name]
|
||||
|
||||
# check if this image is 32bit or 64bit
|
||||
is_32bit = not symbols.symbol_table_is_64bit(context, vmlinux.symbol_table_name)
|
||||
is_32bit = not symbols.symbol_table_is_64bit(
|
||||
context=context, symbol_table_name=vmlinux.symbol_table_name
|
||||
)
|
||||
if is_32bit:
|
||||
pack_format = "I"
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user