Skip to content
Snippets Groups Projects
Commit b9d0b898 authored by Peter Lünenschloß's avatar Peter Lünenschloß
Browse files

Merge branch 'plotFix' into 'develop'

fix ylim=None bug

See merge request !822
parents 67bd5f69 120cb0d0
No related branches found
No related tags found
1 merge request!822fix ylim=None bug
Pipeline #203939 passed with stages
in 8 minutes and 14 seconds
......@@ -503,8 +503,9 @@ class ToolsMixin:
and not isinstance(yscope[0], (list, tuple))
):
yscope = tuple(yscope)
if yscope is not None:
ax_kwargs.update({"ylim": yscope})
ax_kwargs.update({"ylim": yscope})
if not path:
mpl.use(_MPL_DEFAULT_BACKEND)
......
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