Skip to content
Snippets Groups Projects
Commit 8e4cb53c authored by Julian Lenz's avatar Julian Lenz
Browse files

FancyAxes plot and errorbar return tuple

parent 16d550ff
No related branches found
No related tags found
No related merge requests found
......@@ -162,7 +162,7 @@ class FancyAxes(mpl.axes.Axes):
# plot
ret=super().plot(*args,linestyle=linestyle,color=color,marker=marker,**kwargs)
return ret
return tuple(ret)
def errorbar(self,*args,**kwargs):
'''
......@@ -273,7 +273,7 @@ class FancyAxes(mpl.axes.Axes):
label=label,
**kwargs)
return ret
return tuple(ret)
def cla(self):
self.resetCyclers()
......
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