Skip to content

Commit 149d340

Browse files
committed
Fix lint error
1 parent df15183 commit 149d340

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/array_api_stubs/_draft/manipulation_functions.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,12 @@ def flip(x: array, /, *, axis: Optional[Union[int, Tuple[int, ...]]] = None) ->
115115
"""
116116

117117

118-
def moveaxis(x: array, source: Union[int, Tuple[int, ...]], destination: Union[int, Tuple[int, ...]], /) -> array:
118+
def moveaxis(
119+
x: array,
120+
source: Union[int, Tuple[int, ...]],
121+
destination: Union[int, Tuple[int, ...]],
122+
/
123+
) -> array:
119124
"""
120125
Moves array axes (dimensions) to new positions, while leaving other axes in their original positions.
121126

0 commit comments

Comments
 (0)