Closed tengyifei closed 1 week ago
Tuple[T] means a tuple of 1 element of type T. These annotations actually wanted to say a tuple of N elements of type T. The right incantation for that is Tuple[T, ...].
Tuple[T]
T
Tuple[T, ...]
Tuple[T]
means a tuple of 1 element of typeT
. These annotations actually wanted to say a tuple of N elements of typeT
. The right incantation for that isTuple[T, ...]
.