LAP-DEV commited on
Commit
59ccb21
·
verified ·
1 Parent(s): 7d17b3a

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
@@ -629,7 +629,7 @@ class WhisperBase(ABC):
629
 
630
  outputdata = []
631
  temp_inputdata = (inputdata.strip("\n")).splitlines()
632
- for temp_line in temp_inputdata:
633
  temp_line_list = []
634
  temp_line_items = temp_line.split("\t")
635
  for temp_line_item in temp_line_items:
 
629
 
630
  outputdata = []
631
  temp_inputdata = (inputdata.strip("\n")).splitlines()
632
+ for temp_line in temp_inputdata:
633
  temp_line_list = []
634
  temp_line_items = temp_line.split("\t")
635
  for temp_line_item in temp_line_items: