From 1da86af5d8414dc3901939afbbcc1fb6f9a0a22d Mon Sep 17 00:00:00 2001 From: Nikhil Parasaram Date: Mon, 4 Mar 2019 19:41:47 +0530 Subject: [PATCH] Remove exception assignment --- 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 3b8f7fe2..26e07979 100644 --- a/mythril/laser/ethereum/instructions.py +++ b/mythril/laser/ethereum/instructions.py @@ -1325,7 +1325,7 @@ class Instruction: index = util.get_concrete_int(index) return self._sload_helper(global_state, index) - except TypeError as e: + except TypeError: if not keccak_function_manager.is_keccak(index): return self._sload_helper(global_state, str(index))