Update modules/whisper/whisper_base.py
Browse files
modules/whisper/whisper_base.py
CHANGED
@@ -429,7 +429,7 @@ class WhisperBase(ABC):
|
|
429 |
result_str = total_result.rstrip("\n")
|
430 |
result_file_path = [info['path'] for info in files_to_download.values()]
|
431 |
|
432 |
-
return [result_str,result_file_path,total_info]
|
433 |
|
434 |
except Exception as e:
|
435 |
print(f"Error transcribing file: {e}")
|
|
|
429 |
result_str = total_result.rstrip("\n")
|
430 |
result_file_path = [info['path'] for info in files_to_download.values()]
|
431 |
|
432 |
+
return [list(result_str),result_file_path,total_info]
|
433 |
|
434 |
except Exception as e:
|
435 |
print(f"Error transcribing file: {e}")
|