File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 18
18
from .array_helpers import ndindex
19
19
from .function_stubs import elementwise_functions
20
20
from .pytest_helpers import nargs
21
- from .typing import DataType , Shape
21
+ from .typing import Array , DataType , Shape
22
22
23
23
# Set this to True to not fail tests just because a dtype isn't implemented.
24
24
# If no compatible dtype is implemented for a given test, the test will fail
@@ -344,7 +344,7 @@ def multiaxis_indices(draw, shapes):
344
344
def two_mutual_arrays (
345
345
dtypes : Sequence [DataType ] = dh .all_dtypes ,
346
346
two_shapes : SearchStrategy [Tuple [Shape , Shape ]] = two_mutually_broadcastable_shapes ,
347
- ) -> SearchStrategy :
347
+ ) -> Tuple [ SearchStrategy [ Array ], SearchStrategy [ Array ]] :
348
348
mutual_dtypes = shared (mutually_promotable_dtypes (dtypes = dtypes ))
349
349
mutual_shapes = shared (two_shapes )
350
350
arrays1 = xps .arrays (
You can’t perform that action at this time.
0 commit comments