Skip to content

Commit 47f70de

Browse files
committed
Ensure 'plot' returns tuples of handles (fixes #260)
1 parent 3a466d2 commit 47f70de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proplot/axes/plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1684,7 +1684,7 @@ def _apply_plot(self, *args, cmap=None, values=None, **kwargs):
16841684

16851685
objs.extend(iobjs)
16861686

1687-
return objs
1687+
return tuple(objs)
16881688

16891689

16901690
def _plot_extras(self, *args, **kwargs):

0 commit comments

Comments
 (0)