Skip to content

Commit 49b40eb

Browse files
committed
Make black happy
1 parent 6babe15 commit 49b40eb

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

volatility3/framework/plugins/windows/dumpfiles.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -322,17 +322,19 @@ def _generator(self, procs: List, offsets: List):
322322
elif offsets:
323323
virtual_layer_name = kernel.layer_name
324324

325-
#FIXME - change this after standard access to physical layer
325+
# FIXME - change this after standard access to physical layer
326326
physical_layer_name = self.context.layers[virtual_layer_name].config[
327327
"memory_layer"
328328
]
329329

330-
# Now process any offsets explicitly requested by the user.
330+
# Now process any offsets explicitly requested by the user.
331331
for offset, is_virtual in offsets:
332332
try:
333333
file_obj = self.context.object(
334334
kernel.symbol_table_name + constants.BANG + "_FILE_OBJECT",
335-
layer_name=virtual_layer_name if is_virtual else physical_layer_name,
335+
layer_name=(
336+
virtual_layer_name if is_virtual else physical_layer_name
337+
),
336338
native_layer_name=virtual_layer_name,
337339
offset=offset,
338340
)

0 commit comments

Comments
 (0)