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 @staticmethod
def _code_copy_helper( def _code_copy_helper(
code: str, code: str,
memory_offset: BitVec, memory_offset: Union[int, BitVec],
code_offset: BitVec, code_offset: Union[int, BitVec],
size: BitVec, size: Union[int, BitVec],
op: str, op: str,
global_state: GlobalState, global_state: GlobalState,
) -> List[GlobalState]: ) -> List[GlobalState]:

Loading…
Cancel
Save