update buller condition

This commit is contained in:
Gokul Mohanarangan
2023-10-14 18:55:40 +05:30
parent 79fa537c35
commit c1a9005ec3

View File

@@ -79,7 +79,7 @@ class TranscriptFinalLongSummaryProcessor(Processor):
sentence = str(sentence).strip() sentence = str(sentence).strip()
if sentence.startswith("- "): if sentence.startswith("- "):
sentence.replace("- ", "* ") sentence.replace("- ", "* ")
else: elif not sentence.startswith("*"):
sentence = "* " + sentence sentence = "* " + sentence
sentence += " \n" sentence += " \n"
summary_sentences.append(sentence) summary_sentences.append(sentence)