Skip to content

Commit 1d62494

Browse files
authored
Update fix_mismatch.py
fix syntax error
1 parent 67e123a commit 1d62494

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/mfa_extraction/fix_mismatch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def fix(base_path: str, dur_path: str, trimmed_dur_path: str, use_norm: str):
4444
os.makedirs(os.path.join(pre_path, "fix_dur"), exist_ok=True)
4545

4646
logging.info(f"FIXING {t} set ...\n")
47-
for i in tqdm(os.listdir(os.path.join(pre_path, "ids")):
47+
for i in tqdm(os.listdir(os.path.join(pre_path, "ids"))):
4848
if use_norm == "t":
4949
mel = np.load(os.path.join(pre_path, "norm-feats", f"{i.split('-')[0]}-norm-feats.npy"))
5050
else:

0 commit comments

Comments
 (0)