Fixed mypy.

pending-opcodes
Eric N 5 years ago
parent 581c8d7b01
commit e47c35ee15
  1. 6
      mythril/laser/ethereum/instructions.py

@ -1152,9 +1152,9 @@ class Instruction:
@staticmethod
def _code_copy_helper(
code: str,
memory_offset: BitVec,
code_offset: BitVec,
size: BitVec,
memory_offset: Union[int, BitVec],
code_offset: Union[int, BitVec],
size: Union[int, BitVec],
op: str,
global_state: GlobalState,
) -> List[GlobalState]:

Loading…
Cancel
Save