Skip to content

Commit c6e371c

Browse files
authored
update gaussian import (#171)
scipy now has gaussian in `signal.windows` instead of `signal`. Grrr...
1 parent 5e2e417 commit c6e371c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

xarrayutils/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import numpy as np
22
import xarray as xr
3-
from scipy.signal import filtfilt, gaussian
3+
from scipy.signal import filtfilt
4+
from scipy.signal.windows import gaussian
45
from scipy import stats
56

67
from dask.array import coarsen, ones_like

0 commit comments

Comments
 (0)