Update modules/whisper/whisper_base.py
Browse files
modules/whisper/whisper_base.py
CHANGED
|
@@ -629,7 +629,7 @@ class WhisperBase(ABC):
|
|
| 629 |
|
| 630 |
outputdata = []
|
| 631 |
temp_inputdata = (inputdata.strip("\n")).splitlines()
|
| 632 |
-
|
| 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:
|