Skip to content

Commit 3bf3cd0

Browse files
build: using sphinx supported typing.Unpack for unpacking tuple types (#15)
Co-authored-by: Al <altynbek.orumbayev@makerx.com.au>
1 parent 10b76b9 commit 3bf3cd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/algopy_testing/arc4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -942,7 +942,7 @@ def __getitem__(cls, key_t: tuple[type[_ABIEncoded], ...]) -> type:
942942

943943
class Tuple(
944944
_ABIEncoded,
945-
tuple[*_TTuple],
945+
tuple[typing.Unpack[_TTuple]],
946946
typing.Generic[typing.Unpack[_TTuple]],
947947
metaclass=_TupleMeta,
948948
):

0 commit comments

Comments
 (0)