sssssungk commited on
Commit
58d5091
·
verified ·
1 Parent(s): b9f00f2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -204,9 +204,9 @@ def main(file_name):
204
 
205
  text_list.append(convert_wav_to_text(audio_file))
206
 
207
- # '제거
208
  for i in range(len(text_list)):
209
- text_list[i] = text_list[i].replace("'","")
210
 
211
  return rf_check, text_list
212
 
 
204
 
205
  text_list.append(convert_wav_to_text(audio_file))
206
 
207
+ # '추가(" "형식으로 나오게)
208
  for i in range(len(text_list)):
209
+ text_list[i] = text_list[i]+"'"
210
 
211
  return rf_check, text_list
212