Skip to content

Commit becfd6b

Browse files
committed
Docstring error fix
1 parent 4caf802 commit becfd6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyAudioProcessing/features/audioFeatureExtraction.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def stFeatureExtraction(signal, fs, win, step, feats):
5959
[fbank, freqs] = mfccInitFilterBanks(fs, nFFT) # compute the triangular filter banks used in the mfcc calculation
6060

6161
n_harmonic_feats = 0
62-
62+
6363
feature_names = []
6464
if "spectral" in feats:
6565
n_time_spectral_feats = 8
@@ -243,7 +243,7 @@ def dirWavFeatureExtraction(dirName, mt_win, mt_step, st_win, st_step, feats,
243243

244244
def dirsWavFeatureExtraction(dirNames, mt_win, mt_step, st_win, st_step, feats, compute_beat=False):
245245
'''
246-
Same as WavFeatureExtraction, but instead of a single dir it
246+
Same as dirWavFeatureExtraction, but instead of a single dir it
247247
takes a list of paths as input and returns a list of feature matrices.
248248
EXAMPLE:
249249
[features, classNames] =

0 commit comments

Comments
 (0)