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()
if sentence.startswith("- "):
sentence.replace("- ", "* ")
else:
elif not sentence.startswith("*"):
sentence = "* " + sentence
sentence += " \n"
summary_sentences.append(sentence)