Skip to content
Snippets Groups Projects
Verified Commit 9cd1d8f3 authored by Petr Špaček's avatar Petr Špaček
Browse files

plot-response-rate: avoid white line on white background

parent b9795445
No related branches found
No related tags found
1 merge request!55plot-response-rate: avoid white line on white background
Pipeline #85715 passed
......@@ -206,6 +206,7 @@ def main():
ax = init_plot(args.title)
colors = list(mcolors.TABLEAU_COLORS.keys()) + list(mcolors.BASE_COLORS.keys())
colors.remove('w') # avoid white line on white background
for json_path, color in itertools.zip_longest(args.json_file, colors[:len(args.json_file)]):
try:
process_file(json_path, color, args, ax)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment