Skip to content

Commit 32eaeeb

Browse files
committed
Fix typing typo
1 parent aecd31f commit 32eaeeb

File tree

1 file changed

+2
-2
lines changed
  • volatility3/framework/plugins/linux

1 file changed

+2
-2
lines changed

volatility3/framework/plugins/linux/lsof.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import logging
55
from datetime import datetime
66
from dataclasses import dataclass, astuple, field
7-
from typing import List, Callable
7+
from typing import List, Callable, Tuple
88

99
from volatility3.framework import renderers, interfaces, constants
1010
from volatility3.framework.configuration import requirements
@@ -48,7 +48,7 @@ class FDInternal:
4848
"""
4949

5050
task: interfaces.objects.ObjectInterface
51-
fd_fields: tuple[int, int, str]
51+
fd_fields: Tuple[int, int, str]
5252

5353
def to_user(self) -> FDUser:
5454
"""Augment the FD information to be presented to the user

0 commit comments

Comments
 (0)