From 520faa7f2ce172fa50aebf01455989524f1d9ce4 Mon Sep 17 00:00:00 2001 From: dst03106 Date: Sun, 1 Jun 2025 00:36:25 +0900 Subject: [PATCH] feat: include item count in TODO sections summary --- pr_agent/algo/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pr_agent/algo/utils.py b/pr_agent/algo/utils.py index d89cb212..4ce4b389 100644 --- a/pr_agent/algo/utils.py +++ b/pr_agent/algo/utils.py @@ -274,7 +274,7 @@ def convert_to_markdown_v2(output_data: dict, if is_value_no(value): markdown_text += f"{emoji} No TODO sections" else: - markdown_text += f"
{emoji} TODO sections\n\n" + markdown_text += f"
{emoji} TODO sections ({len(value)} items)\n\n" if isinstance(value, list): markdown_text += "
    \n" for todo_item in value: