Skip to content

Commit

Permalink
update gaussian import (#171)
Browse files Browse the repository at this point in the history
scipy now has gaussian in `signal.windows` instead of `signal`.   Grrr...
  • Loading branch information
rsignell authored Apr 29, 2024
1 parent 5e2e417 commit c6e371c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xarrayutils/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import numpy as np
import xarray as xr
from scipy.signal import filtfilt, gaussian
from scipy.signal import filtfilt
from scipy.signal.windows import gaussian
from scipy import stats

from dask.array import coarsen, ones_like
Expand Down

0 comments on commit c6e371c

Please sign in to comment.