Skip to content

Commit

Permalink
fix(vm): add missing SupportsBytes parameter type
Browse files Browse the repository at this point in the history
  • Loading branch information
marioevz committed Sep 20, 2024
1 parent 526c23b commit c959400
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ethereum_test_vm/opcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def _get_int_size(n: int) -> int:


def _stack_argument_to_bytecode(
arg: "int | bytes | str | Opcode | Bytecode | Iterable[int]",
arg: "int | bytes | SupportsBytes | str | Opcode | Bytecode | Iterable[int]",
) -> Bytecode:
"""
Converts a stack argument in an opcode or macro to bytecode.
Expand Down

0 comments on commit c959400

Please sign in to comment.