LAP-DEV commited on
Commit
60cd2a1
·
verified ·
1 Parent(s): 2ee9fe8

Update modules/whisper/whisper_base.py

Browse files
Files changed (1) hide show
  1. modules/whisper/whisper_base.py +1 -1
modules/whisper/whisper_base.py CHANGED
@@ -446,7 +446,7 @@ class WhisperBase(ABC):
446
  total_info += f"\nProcessed {file_count} {temp_file_count_text} in {self.format_time((time_end-time_start).total_seconds())}"
447
 
448
  result_str = total_result.rstrip("\n")
449
- result_str = self.transform_text_to_list(result_str,"\t","\n")
450
  result_file_path = [info['path'] for info in files_to_download.values()]
451
 
452
  return [result_str,result_file_path,total_info]
 
446
  total_info += f"\nProcessed {file_count} {temp_file_count_text} in {self.format_time((time_end-time_start).total_seconds())}"
447
 
448
  result_str = total_result.rstrip("\n")
449
+ result_str = self.transform_text_to_list(result_str,"","")
450
  result_file_path = [info['path'] for info in files_to_download.values()]
451
 
452
  return [result_str,result_file_path,total_info]