Skip to content
Snippets Groups Projects
Commit eb328c09 authored by Christian Rohlfing's avatar Christian Rohlfing
Browse files

Merge branch 'rohlfing/update-matplotlib-dependencies' into 'master'

Matplotlib: removed use_line_collection since it is deprecated

See merge request !11
parents 22b617c9 537a9db9
No related branches found
No related tags found
1 merge request!11Matplotlib: removed use_line_collection since it is deprecated
Pipeline #1606170 failed
......@@ -333,7 +333,7 @@ mcolors.get_named_colors_mapping().update(colors.rwth_colors)
# Custom stem function
def stem(ax, x, y, color='rwth:blue', **kwargs):
container = ax.stem(x, y, use_line_collection=True, basefmt=" ", **kwargs)
container = ax.stem(x, y, basefmt=" ", **kwargs)
plt.setp(container, 'color', color)
return container
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment