From d828e4e902a66f0bab02191edd31a3561b8d3d17 Mon Sep 17 00:00:00 2001 From: "Winston H." <56998716+winstxnhdw@users.noreply.github.com> Date: Fri, 18 Oct 2024 16:45:15 +0100 Subject: [PATCH] fix: tuple must use ellipsis --- src/examplify/types/list_or_tuple.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/examplify/types/list_or_tuple.py b/src/examplify/types/list_or_tuple.py index 354f74b..ae3b0c3 100644 --- a/src/examplify/types/list_or_tuple.py +++ b/src/examplify/types/list_or_tuple.py @@ -1 +1 @@ -type ListOrTuple[T] = list[T] | tuple[T] +type ListOrTuple[T] = list[T] | tuple[T, ...]