From f5dc7eaf6a1c60938a819d0103e968543953aabe Mon Sep 17 00:00:00 2001 From: Hyunsung Lee Date: Sun, 20 Apr 2025 13:01:36 +0900 Subject: [PATCH] nit Signed-off-by: Hyunsung Lee --- python/src/ops.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/ops.cpp b/python/src/ops.cpp index 2c882490e..513efca1a 100644 --- a/python/src/ops.cpp +++ b/python/src/ops.cpp @@ -5226,7 +5226,7 @@ void init_ops(nb::module_& m) { auto py_list = nb::cast(result); return nb::tuple(py_list); }, - nb::sig("def broadcast_shapes(*shapes: Sequence[int]) -> Sequence[int]"), + nb::sig("def broadcast_shapes(*shapes: Sequence[int]) -> Tuple[int]"), R"pbdoc( Broadcast shapes.