mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-11 12:17:38 +02:00
Fix up minor typing issues.
This commit is contained in:
@@ -79,7 +79,7 @@ class BaseSymbolTableInterface(validity.ValidityRoutines):
|
||||
table_mapping = {}
|
||||
self.table_mapping = self._check_type(table_mapping, dict)
|
||||
self._native_types = self._check_type(native_types, NativeTableInterface)
|
||||
self._sort_symbols = []
|
||||
self._sort_symbols = [] # type: typing.List[typing.Tuple[int, str]]
|
||||
|
||||
# ## Required Symbol functions
|
||||
|
||||
|
||||
@@ -90,6 +90,7 @@ class ReferenceTemplate(interfaces.objects.Template):
|
||||
size = property(_unresolved) # type: typing.ClassVar[typing.Any]
|
||||
replace_child = _unresolved # type: typing.ClassVar[typing.Any]
|
||||
relative_child_offset = _unresolved # type: typing.ClassVar[typing.Any]
|
||||
has_member = _unresolved # type: typing.ClassVar[typing.Any]
|
||||
|
||||
def __call__(self,
|
||||
context: interfaces.context.ContextInterface,
|
||||
|
||||
Reference in New Issue
Block a user