From 081310b943f46fed6ba9d5080789bd02423b6e2d Mon Sep 17 00:00:00 2001 From: Judy Date: Wed, 18 Jun 2025 13:08:05 +0900 Subject: [PATCH] style: refine layout of TODO section (add

) --- 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 44d2115e..dbb1981e 100644 --- a/pr_agent/algo/utils.py +++ b/pr_agent/algo/utils.py @@ -289,7 +289,7 @@ def convert_to_markdown_v2(output_data: dict, details_open_attr = " open" if markdown_todo_items.count("\n") + 1 <= EXPAND_LINE_THRESHOLD else "" todo_entry_label = f"{len(value)} " + "entries" if len(value) > 1 else "entry" - markdown_text += f"{emoji} TODO sections ({todo_entry_label})\n" + markdown_text += f"{emoji} TODO sections\n

\n" markdown_text += f"{todo_summary}\n\n" markdown_text += markdown_todo_items markdown_text += "\n\n"