LAP-DEV commited on
Commit
6ff8f58
·
verified ·
1 Parent(s): 41028d5

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