asigalov61 commited on
Commit
b62c4c6
1 Parent(s): 22f1ac4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -64,7 +64,7 @@ def find_midi(title, artist):
64
  top_ten_matches = ''
65
 
66
  for t in top_ten_matches_idxs:
67
- top_ten_matches += all_MIDI_files_names[t][0] + '\n'
68
 
69
  print('Done!')
70
  print('=' * 70)
@@ -76,7 +76,7 @@ def find_midi(title, artist):
76
  print('Done!')
77
  print('=' * 70)
78
 
79
- song_artist = best_corpus_match[0]
80
  zlib_file_name = best_corpus_match[1]
81
 
82
  print('Fetching MIDI score...')
 
64
  top_ten_matches = ''
65
 
66
  for t in top_ten_matches_idxs:
67
+ top_ten_matches += str(all_MIDI_files_names[t][0]).title() + '\n'
68
 
69
  print('Done!')
70
  print('=' * 70)
 
76
  print('Done!')
77
  print('=' * 70)
78
 
79
+ song_artist = str(best_corpus_match[0]).title()
80
  zlib_file_name = best_corpus_match[1]
81
 
82
  print('Fetching MIDI score...')