Skip to content

Commit

Permalink
Merge branch 'master' into build-update
Browse files Browse the repository at this point in the history
  • Loading branch information
fakufaku committed Apr 23, 2024
2 parents 001bcd3 + 7e173e8 commit d321506
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pyroomacoustics/metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
import platform

import numpy as np
from scipy.signal import hann

try:
from scipy.signal import hann
except ImportError:
from scipy.signal.windows import hann

from scipy.stats import binom as _binom
from scipy.stats import norm as _norm

Expand Down

0 comments on commit d321506

Please sign in to comment.