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 aecd31f commit 32eaeebCopy full SHA for 32eaeeb
volatility3/framework/plugins/linux/lsof.py
@@ -4,7 +4,7 @@
4
import logging
5
from datetime import datetime
6
from dataclasses import dataclass, astuple, field
7
-from typing import List, Callable
+from typing import List, Callable, Tuple
8
9
from volatility3.framework import renderers, interfaces, constants
10
from volatility3.framework.configuration import requirements
@@ -48,7 +48,7 @@ class FDInternal:
48
"""
49
50
task: interfaces.objects.ObjectInterface
51
- fd_fields: tuple[int, int, str]
+ fd_fields: Tuple[int, int, str]
52
53
def to_user(self) -> FDUser:
54
"""Augment the FD information to be presented to the user
0 commit comments