Skip to content

Commit 8a4ef4b

Browse files
committed
More fixes to type annotations
1 parent 17ea109 commit 8a4ef4b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

numpy/lib/_npyio_impl.pyi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,22 +150,22 @@ def save(
150150
def save(
151151
file: str | os.PathLike[str] | _SupportsWrite[bytes],
152152
arr: ArrayLike,
153-
allow_pickle: bool = ...,
153+
allow_pickle: bool,
154154
fix_imports: bool,
155155
/,
156156
) -> None: ...
157157

158158
def savez(
159159
file: str | os.PathLike[str] | _SupportsWrite[bytes],
160-
allow_pickle: bool = ...,
161160
*args: ArrayLike,
161+
allow_pickle: bool = ...,
162162
**kwds: ArrayLike,
163163
) -> None: ...
164164

165165
def savez_compressed(
166166
file: str | os.PathLike[str] | _SupportsWrite[bytes],
167-
allow_pickle: bool = ...,
168167
*args: ArrayLike,
168+
allow_pickle: bool = ...,
169169
**kwds: ArrayLike,
170170
) -> None: ...
171171

0 commit comments

Comments
 (0)