More typing fixes.

This commit is contained in:
Mike Auty
2019-04-05 14:24:08 +01:00
parent f24fbe6f0f
commit c85430c28e
+2 -2
View File
@@ -22,7 +22,7 @@ import collections
import collections.abc
import enum
import logging
from typing import Any, Dict, Iterable, Iterator, Set, TypeVar
from typing import Any, Dict, Iterable, Iterator, TypeVar
from volatility.framework import constants, exceptions, interfaces, objects
@@ -267,7 +267,7 @@ def mask_symbol_table(symbol_table: interfaces.symbols.SymbolTableInterface,
return new_symbol
original_get_symbol = symbol_table.get_symbol
symbol_table.get_symbol = address_masked_get_symbol
setattr(symbol_table, "get_symbol", address_masked_get_symbol)
return symbol_table