Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .mypyignore-todo
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
scipy.cluster.vq.whiten

scipy.interpolate.RectBivariateSpline.__init__
scipy.interpolate._bsplines.make_smoothing_spline
scipy.interpolate._fitpack2.RectBivariateSpline.__init__
Expand Down
4 changes: 2 additions & 2 deletions scipy-stubs/cluster/vq.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ class ClusterError(Exception): ...

#
@overload
def whiten(obs: onp.ArrayND[np.bool_ | np.integer[Any]], check_finite: bool = True) -> onp.Array2D[np.float64]: ...
def whiten(obs: onp.ArrayND[np.bool_ | np.integer[Any]], check_finite: bool | None = None) -> onp.Array2D[np.float64]: ...
@overload
def whiten(obs: onp.ArrayND[_InexactT], check_finite: bool = True) -> onp.Array2D[_InexactT]: ...
def whiten(obs: onp.ArrayND[_InexactT], check_finite: bool | None = None) -> onp.Array2D[_InexactT]: ...

#
@overload
Expand Down