remove type hint because it is not supported in 3.5

pull/501/head
Joran Honig 6 years ago
parent 9a5792f483
commit b306d15032
  1. 2
      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):

Loading…
Cancel
Save