mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-23 22:52:23 +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,
|
||||
|
||||
@@ -127,6 +127,7 @@ class UserAssist(interfaces_plugins.PluginInterface):
|
||||
super().__init__(*args, **kwargs)
|
||||
self._userassist_size = 0
|
||||
self._userassist_type_name = "_VOL_USERASSIST_TYPES_7"
|
||||
self._reg_table_name = None
|
||||
self._win7 = None
|
||||
|
||||
@classmethod
|
||||
|
||||
Reference in New Issue
Block a user