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

fix ylim=None bug

parent de1b0872
No related branches found
No related tags found
1 merge request!822fix ylim=None bug
......@@ -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