Skip to content

Commit fe51b28

Browse files
committed
Make requested change in PE loader
1 parent a3bccf5 commit fe51b28

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

qiling/loader/pe.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,12 @@
3030
from logging import Logger
3131
from qiling import Qiling
3232

33-
ForwardedExport = namedtuple('ForwardedExport', [
34-
'source_dll', 'source_ordinal', 'source_symbol',
35-
'target_dll', 'target_symbol'
36-
])
33+
class ForwardedExport(NamedTuple):
34+
source_dll: str
35+
source_ordinal: str
36+
source_symbol: str
37+
target_dll: str
38+
target_symbol: str
3739

3840

3941
class QlPeCacheEntry(NamedTuple):

0 commit comments

Comments
 (0)