Update modules/whisper/whisper_base.py
Browse files
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),
|
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:
|