aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/plots.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plots.py b/src/plots.py
index c7750d8..bcd1e6a 100644
--- a/src/plots.py
+++ b/src/plots.py
@@ -38,7 +38,7 @@ def _get_alloc_color(bench, alloc):
if alloc["color"] is None:
allocs = bench.results["allocators"]
explicit_colors = [v["color"] for v in allocs.values() if v["color"] is not None]
- matplotlib_c_colors = ["C" + str(i) for i in range(0,16)]
+ matplotlib_c_colors = ["C" + str(i) for i in range(0,10)]
avail_colors = [c for c in matplotlib_c_colors if c not in explicit_colors]
for alloc in allocs.values():