Skip to content

Commit e0dc649

Browse files
committed
black
1 parent 2efb7f5 commit e0dc649

File tree

1 file changed

+3
-1
lines changed
  • volatility3/framework/symbols/linux/extensions

1 file changed

+3
-1
lines changed

volatility3/framework/symbols/linux/extensions/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,9 @@ def get_page_offset(self) -> int:
12531253

12541254
def _do_get_name(self, context, task) -> str:
12551255
if self.vm_file != 0:
1256-
fname = linux.LinuxUtilities.path_for_file(context, task, self.vm_file, files_only=False)
1256+
fname = linux.LinuxUtilities.path_for_file(
1257+
context, task, self.vm_file, files_only=False
1258+
)
12571259
elif self.vm_start <= task.mm.start_brk and self.vm_end >= task.mm.brk:
12581260
fname = "[heap]"
12591261
elif self.vm_start <= task.mm.start_stack <= self.vm_end:

0 commit comments

Comments
 (0)