Skip to content

Commit 17ea109

Browse files
committed
Revert fix_imports annotation
1 parent 286c545 commit 17ea109

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

numpy/lib/_npyio_impl.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,15 +143,15 @@ def save(
143143
arr: ArrayLike,
144144
allow_pickle: bool = ...,
145145
*,
146-
fix_imports: bool = ...,
146+
fix_imports: bool,
147147
) -> None: ...
148148
@overload
149149
@deprecated("The 'fix_imports' flag is deprecated in NumPy 2.1.")
150150
def save(
151151
file: str | os.PathLike[str] | _SupportsWrite[bytes],
152152
arr: ArrayLike,
153153
allow_pickle: bool = ...,
154-
fix_imports: bool = ...,
154+
fix_imports: bool,
155155
/,
156156
) -> None: ...
157157

0 commit comments

Comments
 (0)