Skip to content

Commit 496e77b

Browse files
committed
Fix two_mutual_arrays() return type hint
1 parent 5353458 commit 496e77b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

array_api_tests/hypothesis_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ def multiaxis_indices(draw, shapes):
344344
def two_mutual_arrays(
345345
dtypes: Sequence[DataType] = dh.all_dtypes,
346346
two_shapes: SearchStrategy[Tuple[Shape, Shape]] = two_mutually_broadcastable_shapes,
347-
) -> SearchStrategy:
347+
) -> Tuple[SearchStrategy, SearchStrategy]:
348348
mutual_dtypes = shared(mutually_promotable_dtypes(dtypes=dtypes))
349349
mutual_shapes = shared(two_shapes)
350350
arrays1 = xps.arrays(

0 commit comments

Comments
 (0)