From b306d15032709168ee6c1c6a60f550b7aa26a46a Mon Sep 17 00:00:00 2001 From: Joran Honig Date: Sun, 9 Sep 2018 11:26:23 +0200 Subject: [PATCH] remove type hint because it is not supported in 3.5 --- mythril/laser/ethereum/instructions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mythril/laser/ethereum/instructions.py b/mythril/laser/ethereum/instructions.py index d343f3db..90bb5680 100644 --- a/mythril/laser/ethereum/instructions.py +++ b/mythril/laser/ethereum/instructions.py @@ -18,7 +18,7 @@ from mythril.laser.ethereum.keccak import KeccakFunctionManager TT256 = 2 ** 256 TT256M1 = 2 ** 256 - 1 -keccak_function_manager: KeccakFunctionManager = KeccakFunctionManager() +keccak_function_manager = KeccakFunctionManager() class StackUnderflowException(Exception):