ValueError

This commit is contained in:
mrT23
2024-07-03 08:51:08 +03:00
parent 57abf4ac62
commit bea68084b3

View File

@ -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)