Skip to content

Commit

Permalink
fix gaussian import from scipy
Browse files Browse the repository at this point in the history
  • Loading branch information
OriolAbril committed Mar 25, 2024
1 parent ea4c2b5 commit 365e51c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arviz/stats/density_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
import numpy as np
from scipy.fftpack import fft
from scipy.optimize import brentq
from scipy.signal import convolve, convolve2d, gaussian # pylint: disable=no-name-in-module
from scipy.signal import convolve, convolve2d
from scipy.signal.windows import gaussian
from scipy.sparse import coo_matrix
from scipy.special import ive # pylint: disable=no-name-in-module

Expand Down

0 comments on commit 365e51c

Please sign in to comment.