Skip to content

Commit 936a8ad

Browse files
committed
Fix arange()
1 parent 5775b11 commit 936a8ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

array_api_compat/common/_aliases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ def pow(x1, x2, /, xp):
5656
def arange(
5757
start: Union[int, float],
5858
/,
59-
xp,
6059
stop: Optional[Union[int, float]] = None,
6160
step: Union[int, float] = 1,
6261
*,
62+
xp,
6363
dtype: Optional[Dtype] = None,
6464
device: Optional[Device] = None,
6565
) -> ndarray:

0 commit comments

Comments
 (0)