From 0dc7bdabd21fcffacd0a9c7d9f366d99549f2ecc Mon Sep 17 00:00:00 2001 From: mrT23 Date: Sat, 29 Jun 2024 21:22:25 +0300 Subject: [PATCH] review_v2 --- 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 0b21c9df..02792a33 100644 --- a/pr_agent/algo/utils.py +++ b/pr_agent/algo/utils.py @@ -206,7 +206,7 @@ def convert_to_markdown_v2(output_data: dict, gfm_supported: bool = True, increm key_nice = key.replace('_', ' ').capitalize() emoji = emojis.get(key_nice, "") if 'Estimated effort to review' in key_nice: - key_nice = 'Estimated effort to review [1-5]' + key_nice = 'Estimated effort to review' value_int = int(value) blue_bars = '🔵' * value_int white_bars = '⚪' * (5 - value_int)