LAP-DEV commited on
Commit
690ec2b
·
verified ·
1 Parent(s): 86f2482

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
@@ -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