@@ -219,7 +219,7 @@ def plot(*, results: pd.Series,
219
219
equity_data = equity_data .reset_index (drop = True )
220
220
index = df .index
221
221
222
- new_bokeh_figure = partial (
222
+ new_bokeh_figure = partial ( # type: ignore[call-arg]
223
223
_figure ,
224
224
x_axis_type = 'linear' ,
225
225
width = plot_width ,
@@ -230,7 +230,7 @@ def plot(*, results: pd.Series,
230
230
231
231
pad = (index [- 1 ] - index [0 ]) / 20
232
232
233
- _kwargs = dict (x_range = Range1d (index [0 ], index [- 1 ],
233
+ _kwargs = dict (x_range = Range1d (index [0 ], index [- 1 ], # type: ignore[call-arg]
234
234
min_interval = 10 ,
235
235
bounds = (index [0 ] - pad ,
236
236
index [- 1 ] + pad ))) if index .size > 1 else {}
@@ -255,7 +255,7 @@ def plot(*, results: pd.Series,
255
255
trades_cmap = factor_cmap ('returns_positive' , colors_darker , ['0' , '1' ])
256
256
257
257
if is_datetime_index :
258
- fig_ohlc .xaxis .formatter = CustomJSTickFormatter (
258
+ fig_ohlc .xaxis .formatter = CustomJSTickFormatter ( # type: ignore[attr-undefined]
259
259
args = dict (axis = fig_ohlc .xaxis [0 ],
260
260
formatter = DatetimeTickFormatter (days = '%a, %d %b' ,
261
261
months = '%m/%Y' ),
@@ -649,7 +649,7 @@ def __eq__(self, other):
649
649
if plot_volume :
650
650
custom_js_args .update (volume_range = fig_volume .y_range )
651
651
652
- fig_ohlc .x_range .js_on_change ('end' , CustomJS (args = custom_js_args , # type: ignore
652
+ fig_ohlc .x_range .js_on_change ('end' , CustomJS (args = custom_js_args ,
653
653
code = _AUTOSCALE_JS_CALLBACK ))
654
654
655
655
plots = figs_above_ohlc + [fig_ohlc ] + figs_below_ohlc
@@ -674,7 +674,7 @@ def __eq__(self, other):
674
674
675
675
f .add_tools (linked_crosshair )
676
676
wheelzoom_tool = next (wz for wz in f .tools if isinstance (wz , WheelZoomTool ))
677
- wheelzoom_tool .maintain_focus = False # type: ignore
677
+ wheelzoom_tool .maintain_focus = False
678
678
679
679
kwargs = {}
680
680
if plot_width is None :
@@ -720,7 +720,7 @@ def plot_heatmaps(heatmap: pd.Series, agg: Union[Callable, str], ncols: int,
720
720
df [name1 ] = df [name1 ].astype ('str' )
721
721
df [name2 ] = df [name2 ].astype ('str' )
722
722
723
- fig = _figure (x_range = level1 ,
723
+ fig = _figure (x_range = level1 , # type: ignore[call-arg]
724
724
y_range = level2 ,
725
725
x_axis_label = name1 ,
726
726
y_axis_label = name2 ,
@@ -730,10 +730,10 @@ def plot_heatmaps(heatmap: pd.Series, agg: Union[Callable, str], ncols: int,
730
730
tooltips = [(name1 , '@' + name1 ),
731
731
(name2 , '@' + name2 ),
732
732
('Value' , '@_Value{0.[000]}' )])
733
- fig .grid .grid_line_color = None
734
- fig .axis .axis_line_color = None
735
- fig .axis .major_tick_line_color = None
736
- fig .axis .major_label_standoff = 0
733
+ fig .grid .grid_line_color = None # type: ignore[attr-defined]
734
+ fig .axis .axis_line_color = None # type: ignore[attr-defined]
735
+ fig .axis .major_tick_line_color = None # type: ignore[attr-defined]
736
+ fig .axis .major_label_standoff = 0 # type: ignore[attr-defined]
737
737
738
738
fig .rect (x = name1 ,
739
739
y = name2 ,
0 commit comments