We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3174687 commit 95ad1eeCopy full SHA for 95ad1ee
src/panel_precision_slider/main.py
@@ -1,3 +1,5 @@
1
+from typing import Any
2
+
3
import panel as pn
4
import param
5
@@ -28,7 +30,7 @@ class PrecisionSlider(pn.custom.PyComponent):
28
30
doc="Flag to toggle between the slider and input field.",
29
31
)
32
- def __init__(self, **params):
33
+ def __init__(self, **params: dict[str, Any]) -> None:
34
"""
35
Initializes the PrecisionSlider component with the given parameters.
36
0 commit comments