Skip to content

Commit

Permalink
fix: tuple must use ellipsis
Browse files Browse the repository at this point in the history
  • Loading branch information
winstxnhdw authored Oct 18, 2024
1 parent 5a10c83 commit d828e4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/examplify/types/list_or_tuple.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
type ListOrTuple[T] = list[T] | tuple[T]
type ListOrTuple[T] = list[T] | tuple[T, ...]

0 comments on commit d828e4e

Please sign in to comment.