diff --git a/scipy-stubs/signal/_spectral_py.pyi b/scipy-stubs/signal/_spectral_py.pyi index 8c29a4ce..748a4949 100644 --- a/scipy-stubs/signal/_spectral_py.pyi +++ b/scipy-stubs/signal/_spectral_py.pyi @@ -23,7 +23,6 @@ _LegacyScaling: TypeAlias = Literal["psd", "spectrum"] _Average: TypeAlias = Literal["mean", "median"] _Boundary: TypeAlias = Literal["even", "odd", "constant", "zeros"] | None -# NOTE(pavyamsiri): This function was actually recently updated, adding new arguments and return types. def lombscargle( x: _ArrayLikeFloat_co, y: _ArrayLikeFloat_co, @@ -31,8 +30,6 @@ def lombscargle( precenter: op.CanBool = False, normalize: op.CanBool = False, ) -> _Array_f8_1d: ... - -# NOTE(pavyamsiri): The docs don't allow `None` for `window` but the body does? def periodogram( x: _ArrayLikeComplex_co, fs: AnyReal = 1.0,