Skip to content

Commit 4d5be76

Browse files
committed
Typing annotations
1 parent 0633b11 commit 4d5be76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qiling/os/uefi/context.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from abc import ABC, abstractmethod
2-
from typing import Any, Mapping, Optional, Tuple
2+
from typing import Any, Mapping, MutableSequence, Optional, Tuple
33

44
from qiling import Qiling
55
from qiling.os.memory import QlMemoryHeap
@@ -14,7 +14,7 @@ def __init__(self, ql: Qiling):
1414
self.heap: QlMemoryHeap
1515
self.top_of_stack: int
1616
self.protocols = {}
17-
self.loaded_image_protocol_modules = []
17+
self.loaded_image_protocol_modules: MutableSequence[int] = []
1818
self.next_image_base: int
1919

2020
# These members must be initialized before attempting to install a configuration table.

0 commit comments

Comments
 (0)