Skip to content

Commit

Permalink
less future
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky committed Mar 19, 2024
1 parent 7222f09 commit 23e47d8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions clvm/SExp.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@


CastableType = typing.Union[
SExp,
"SExp",
CLVMStorage,
typing.SupportsBytes,
bytes,
str,
int,
None,
typing.Sequence[CastableType],
typing.Tuple[CastableType, CastableType],
typing.Sequence["CastableType"],
typing.Tuple["CastableType", "CastableType"],
]


Expand Down Expand Up @@ -59,7 +59,7 @@ def convert_atom_to_bytes(
raise ValueError("can't cast %s (%s) to bytes" % (type(v), v))


ValType = typing.Union[SExp, CastableType]
ValType = typing.Union["SExp", CastableType]
StackType = typing.List[ValType]


Expand Down

0 comments on commit 23e47d8

Please sign in to comment.