Apply black

pull/632/head
Dominik Muhs 6 years ago
parent 027db3fb10
commit ee9f3bd5e7
  1. 4
      mythril/laser/ethereum/instructions.py

@ -886,7 +886,9 @@ class Instruction:
return self._sload_helper(global_state, str(index)) return self._sload_helper(global_state, str(index))
@staticmethod @staticmethod
def _sload_helper(global_state: GlobalState, index: Union[int, ExprRef], constraints=None): def _sload_helper(
global_state: GlobalState, index: Union[int, ExprRef], constraints=None
):
try: try:
data = global_state.environment.active_account.storage[index] data = global_state.environment.active_account.storage[index]
except KeyError: except KeyError:

Loading…
Cancel
Save