Update modules/whisper/whisper_base.py
Browse files
modules/whisper/whisper_base.py
CHANGED
@@ -487,7 +487,7 @@ class WhisperBase(ABC):
|
|
487 |
output_path += '.csv'
|
488 |
|
489 |
#Reformat speaker id layout: remove '_'
|
490 |
-
content.replace("SPEAKER_", "SPEAKER ")
|
491 |
|
492 |
write_file(content, output_path)
|
493 |
return content, output_path
|
|
|
487 |
output_path += '.csv'
|
488 |
|
489 |
#Reformat speaker id layout: remove '_'
|
490 |
+
content = content.replace("SPEAKER_", "SPEAKER ")
|
491 |
|
492 |
write_file(content, output_path)
|
493 |
return content, output_path
|