Fix broadcast_arrays python sig (#1763)

This commit is contained in:
wrmsr 2025-01-10 15:33:26 -05:00 committed by GitHub
parent ab8e832c18
commit a4a2764a52
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2808,7 +2808,7 @@ void init_ops(nb::module_& m) {
nb::kw_only(),
"stream"_a = nb::none(),
nb::sig(
"def broadcast_arrays(*arrays: array, *, stream: Union[None, Stream, Device] = None) -> Tuple[array, ...]"),
"def broadcast_arrays(*arrays: array, stream: Union[None, Stream, Device] = None) -> Tuple[array, ...]"),
R"pbdoc(
Broadcast arrays against one another.