PierreHanna commited on
Commit
9ef095f
·
verified ·
1 Parent(s): ce5e744

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -56,12 +56,12 @@ def process(prompt, lang):
56
  with open(output_csv, "w") as w:
57
  writer = csv.writer(w)
58
  count = 0
59
- for top in tops:
60
  if count > max_output:
61
  break
62
 
63
- #formated.append(get_url_myma(I[0][0], audio_names, url_dict)
64
- #formated.append(audio_names[I[0][0]].split('.')[0])
65
  #writer.writerow(dict_catalog[file].values())
66
  count += 1
67
 
 
56
  with open(output_csv, "w") as w:
57
  writer = csv.writer(w)
58
  count = 0
59
+ for top in I[0]:
60
  if count > max_output:
61
  break
62
 
63
+ #formated.append(get_url_myma(top, audio_names, url_dict)
64
+ #formated.append(audio_names[top].split('.')[0])
65
  #writer.writerow(dict_catalog[file].values())
66
  count += 1
67