From bea68084b35b6ef17127f42786b5ec6390dcfc3a Mon Sep 17 00:00:00 2001 From: mrT23 Date: Wed, 3 Jul 2024 08:51:08 +0300 Subject: [PATCH] ValueError --- 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 fb88998e..4596223c 100644 --- a/pr_agent/algo/utils.py +++ b/pr_agent/algo/utils.py @@ -117,7 +117,7 @@ def convert_to_markdown_v2(output_data: dict, gfm_supported: bool = True, increm else: try: value_int = int(value.split(',')[0]) - except: + except ValueError: continue blue_bars = '🔵' * value_int white_bars = '⚪' * (5 - value_int)