LAP-DEV commited on
Commit
67b7578
·
verified ·
1 Parent(s): 41b4cc6

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
@@ -432,7 +432,7 @@ class WhisperBase(ABC):
432
  if len(result_file_path)>0:
433
  total_info += f" with {len(result_file_path)} output {'file' if len(result_file_path) == 1 else 'files'} available for download (see sidebar top right)"
434
 
435
- return [gr.update(value={"data": self.transform_text_to_list(total_result),"visible": True}),result_file_path,total_info]
436
  #return [result_str,result_file_path,total_info]
437
 
438
  except Exception as e:
 
432
  if len(result_file_path)>0:
433
  total_info += f" with {len(result_file_path)} output {'file' if len(result_file_path) == 1 else 'files'} available for download (see sidebar top right)"
434
 
435
+ return [gr.update(value={"data": self.transform_text_to_list(total_result)},visible=True),result_file_path,total_info]
436
  #return [result_str,result_file_path,total_info]
437
 
438
  except Exception as e: