violins: fix for python 3

This commit is contained in:
Frédéric Péters 2020-12-24 17:02:11 +01:00
parent 138ce73290
commit 116482e2e9
1 changed files with 1 additions and 1 deletions

View File

@ -37,6 +37,6 @@ class Command(GraphCommand):
ax.set_xticks(range(1, len(zones)+1))
ax.set_xticklabels(zones)
ax.set_yticks(range(5, 29))
ax.set_yticklabels(range(5, 24) + range(0, 5))
ax.set_yticklabels(list(range(5, 24)) + list(range(0, 5)))
self.plot(options)