@@ -96,6 +96,7 @@ class Slider(SliderBase):
9696 label : str ,
9797 valmin : float ,
9898 valmax : float ,
99+ * ,
99100 valinit : float = ...,
100101 valfmt : str | None = ...,
101102 closedmin : bool = ...,
@@ -105,7 +106,6 @@ class Slider(SliderBase):
105106 dragging : bool = ...,
106107 valstep : float | ArrayLike | None = ...,
107108 orientation : Literal ["horizontal" , "vertical" ] = ...,
108- * ,
109109 initcolor : ColorType = ...,
110110 track_color : ColorType = ...,
111111 handle_style : dict [str , Any ] | None = ...,
@@ -127,6 +127,7 @@ class RangeSlider(SliderBase):
127127 label : str ,
128128 valmin : float ,
129129 valmax : float ,
130+ * ,
130131 valinit : tuple [float , float ] | None = ...,
131132 valfmt : str | None = ...,
132133 closedmin : bool = ...,
@@ -181,6 +182,7 @@ class TextBox(AxesWidget):
181182 ax : Axes ,
182183 label : str ,
183184 initial : str = ...,
185+ * ,
184186 color : ColorType = ...,
185187 hovercolor : ColorType = ...,
186188 label_pad : float = ...,
@@ -236,6 +238,7 @@ class Cursor(AxesWidget):
236238 def __init__ (
237239 self ,
238240 ax : Axes ,
241+ * ,
239242 horizOn : bool = ...,
240243 vertOn : bool = ...,
241244 useblit : bool = ...,
@@ -317,6 +320,7 @@ class SpanSelector(_SelectorWidget):
317320 ax : Axes ,
318321 onselect : Callable [[float , float ], Any ],
319322 direction : Literal ["horizontal" , "vertical" ],
323+ * ,
320324 minspan : float = ...,
321325 useblit : bool = ...,
322326 props : dict [str , Any ] | None = ...,
@@ -348,6 +352,7 @@ class ToolLineHandles:
348352 ax : Axes ,
349353 positions : ArrayLike ,
350354 direction : Literal ["horizontal" , "vertical" ],
355+ * ,
351356 line_props : dict [str , Any ] | None = ...,
352357 useblit : bool = ...,
353358 ) -> None : ...
@@ -370,6 +375,7 @@ class ToolHandles:
370375 ax : Axes ,
371376 x : ArrayLike ,
372377 y : ArrayLike ,
378+ * ,
373379 marker : str = ...,
374380 marker_props : dict [str , Any ] | None = ...,
375381 useblit : bool = ...,
@@ -436,6 +442,7 @@ class LassoSelector(_SelectorWidget):
436442 self ,
437443 ax : Axes ,
438444 onselect : Callable [[list [tuple [float , float ]]], Any ],
445+ * ,
439446 useblit : bool = ...,
440447 props : dict [str , Any ] | None = ...,
441448 button : MouseButton | Collection [MouseButton ] | None = ...,
@@ -447,11 +454,11 @@ class PolygonSelector(_SelectorWidget):
447454 self ,
448455 ax : Axes ,
449456 onselect : Callable [[ArrayLike , ArrayLike ], Any ],
457+ * ,
450458 useblit : bool = ...,
451459 props : dict [str , Any ] | None = ...,
452460 handle_props : dict [str , Any ] | None = ...,
453461 grab_range : float = ...,
454- * ,
455462 draw_bounding_box : bool = ...,
456463 box_handle_props : dict [str , Any ] | None = ...,
457464 box_props : dict [str , Any ] | None = ...
@@ -473,6 +480,7 @@ class Lasso(AxesWidget):
473480 ax : Axes ,
474481 xy : tuple [float , float ],
475482 callback : Callable [[list [tuple [float , float ]]], Any ],
483+ * ,
476484 useblit : bool = ...,
477485 ) -> None : ...
478486 def onrelease (self , event : Event ) -> None : ...
0 commit comments