From 13bf17cd64efe905d762f5884c34791e0944e24a Mon Sep 17 00:00:00 2001 From: ValueOn AG Date: Tue, 2 Sep 2025 13:09:56 +0200 Subject: [PATCH] msg cleanup --- modules/chat/handling/handlingTasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/chat/handling/handlingTasks.py b/modules/chat/handling/handlingTasks.py index 6138932b..d99521f2 100644 --- a/modules/chat/handling/handlingTasks.py +++ b/modules/chat/handling/handlingTasks.py @@ -605,7 +605,7 @@ class HandlingTasks: # Add criteria status if available if hasattr(review_result, 'met_criteria') and review_result.met_criteria: for criterion in review_result.met_criteria: - completion_message += f"\n• {criterion}\n" + completion_message += f"\n• {criterion}" if hasattr(review_result, 'quality_score'): completion_message += f"\n📊 Score {review_result.quality_score}/10"