Skip to content

Commit dff1e65

Browse files
committed
REF: Remove unused minor function param
1 parent 3045b64 commit dff1e65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backtesting/_plotting.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ def new_indicator_figure(**kwargs):
257257
fig.yaxis.minor_tick_line_color = None
258258
return fig
259259

260-
def set_tooltips(fig, tooltips=(), vline=True, renderers=(), show_arrow=True):
260+
def set_tooltips(fig, tooltips=(), vline=True, renderers=()):
261261
tooltips = list(tooltips)
262262
renderers = list(renderers)
263263

@@ -269,7 +269,7 @@ def set_tooltips(fig, tooltips=(), vline=True, renderers=(), show_arrow=True):
269269
tooltips = [("#", "@index")] + tooltips
270270
fig.add_tools(HoverTool(
271271
point_policy='follow_mouse',
272-
renderers=renderers, formatters=formatters, show_arrow=show_arrow,
272+
renderers=renderers, formatters=formatters,
273273
tooltips=tooltips, mode='vline' if vline else 'mouse'))
274274

275275
def _plot_equity_section():

0 commit comments

Comments
 (0)