Skip to content

Commit bae6b1e

Browse files
committed
🐛 signal: fix stubtest error in _bvalfromboundary (incorrect parameter name)
1 parent 4daa276 commit bae6b1e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scipy-stubs/signal/_signaltools.pyi

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,15 +106,15 @@ def _valfrommode(mode: str) -> int: ...
106106

107107
# undocumented
108108
@overload
109-
def _bvalfromboundary(mode: L["fill", "pad"]) -> L[0]: ...
109+
def _bvalfromboundary(boundary: L["fill", "pad"]) -> L[0]: ...
110110
@overload
111-
def _bvalfromboundary(mode: L["symm", "symmetric"]) -> L[4]: ...
111+
def _bvalfromboundary(boundary: L["symm", "symmetric"]) -> L[4]: ...
112112
@overload
113-
def _bvalfromboundary(mode: L["wrap", "circular"]) -> L[8]: ...
113+
def _bvalfromboundary(boundary: L["wrap", "circular"]) -> L[8]: ...
114114
@overload
115-
def _bvalfromboundary(mode: L["reflect"]) -> L[16]: ...
115+
def _bvalfromboundary(boundary: L["reflect"]) -> L[16]: ...
116116
@overload
117-
def _bvalfromboundary(mode: str) -> int: ...
117+
def _bvalfromboundary(boundary: str) -> int: ...
118118

119119
#
120120
@overload

0 commit comments

Comments
 (0)