From c1a9005ec301380082d5feb268a84686c6b72082 Mon Sep 17 00:00:00 2001 From: Gokul Mohanarangan Date: Sat, 14 Oct 2023 18:55:40 +0530 Subject: [PATCH] update buller condition --- server/reflector/processors/transcript_final_long_summary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/reflector/processors/transcript_final_long_summary.py b/server/reflector/processors/transcript_final_long_summary.py index 45bbcafb..57e36636 100644 --- a/server/reflector/processors/transcript_final_long_summary.py +++ b/server/reflector/processors/transcript_final_long_summary.py @@ -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)