Skip to content
Snippets Groups Projects
Commit 47344cb6 authored by Bert Palm's avatar Bert Palm 🎇
Browse files

fix for empty label warning

parent 66562733
No related branches found
No related tags found
6 merge requests!685Release 2.4,!684Release 2.4,!567Release 2.2.1,!566Release 2.2,!501Release 2.1,!500fix for empty label warning
Pipeline #97268 passed with stages
in 7 minutes and 33 seconds
......@@ -191,7 +191,7 @@ def _plotVarWithFlags(
):
scatter_kwargs = scatter_kwargs.copy()
ax.set_title(datser.name)
ax.plot(datser, color="black", **plot_kwargs)
ax.plot(datser, color="black", label=" ", **plot_kwargs)
ax.set(**ax_kwargs)
shape_cycle = scatter_kwargs.get("marker", "o")
shape_cycle = itertools.cycle(toSequence(shape_cycle))
......
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