LAP-DEV commited on
Commit
e6c03ad
·
verified ·
1 Parent(s): 9fee7e4

Update modules/whisper/whisper_base.py

Browse files
Files changed (1) hide show
  1. modules/whisper/whisper_base.py +3 -3
modules/whisper/whisper_base.py CHANGED
@@ -420,9 +420,9 @@ class WhisperBase(ABC):
420
  title_line += "■"
421
 
422
  temp_subtitle = info["subtitle"]
423
- temp_subtitle.replace("\t","□")
424
- temp_subtitle.replace("\n","■")
425
- #total_result += title_line
426
  total_result += temp_subtitle
427
 
428
  total_time += info["time_for_task"]
 
420
  title_line += "■"
421
 
422
  temp_subtitle = info["subtitle"]
423
+ temp_subtitle = temp_subtitle.replace("\t","□")
424
+ temp_subtitle = temp_subtitle.replace("\n","■")
425
+ total_result += title_line
426
  total_result += temp_subtitle
427
 
428
  total_time += info["time_for_task"]