We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fdd474 commit 6f3daefCopy full SHA for 6f3daef
1 file changed
src/mplfinance/plotting.py
@@ -783,8 +783,8 @@ def plot( data, **kwargs ):
783
_addplot_apply_supplements(ax,apdict,xdates)
784
if apdict["label"]: # not supported for aptype == 'ohlc' or 'candle'
785
contains_legend_label.append(ax)
786
- for ax in set(contains_legend_label): # there will be duplicates,
787
- ax.legend() # but its ok to call ax.legend() multiple times
+ for ax in set(contains_legend_label): # there might be duplicates
+ ax.legend()
788
789
# fill_between is NOT supported for external_axes_mode
790
# (caller can easily call ax.fill_between() themselves).
0 commit comments