Skip to content

Commit 476da3d

Browse files
bug: fix bug in _GridInterpolator class (#79)
1 parent ec9e0d7 commit 476da3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/waveresponse/_core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1076,8 +1076,8 @@ def reshape(
10761076
self._check_dirs(dirs_new)
10771077

10781078
interp_fun = _GridInterpolator(
1079-
freq_new,
1080-
dirs_new,
1079+
self._freq,
1080+
self._dirs,
10811081
self._vals,
10821082
complex_convert=complex_convert,
10831083
method="linear",

0 commit comments

Comments
 (0)