We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf19b9f commit 2859d7aCopy full SHA for 2859d7a
volatility3/framework/plugins/linux/lsof.py
@@ -4,7 +4,7 @@
4
import logging
5
import datetime
6
import dataclasses
7
-from typing import List, Callable, Tuple
+from typing import List, Callable, Tuple, Iterable
8
9
from volatility3.framework import renderers, interfaces, constants
10
from volatility3.framework.configuration import requirements
@@ -140,7 +140,7 @@ def list_fds(
140
context: interfaces.context.ContextInterface,
141
vmlinux_module_name: str,
142
filter_func: Callable[[int], bool] = lambda _: False,
143
- ) -> FDInternal:
+ ) -> Iterable[FDInternal]:
144
"""Enumerates open file descriptors in tasks
145
146
Args:
0 commit comments