File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
from __future__ import annotations
4
4
5
+ from ..types import Jsonifiable
6
+
5
7
__all__ = (
6
8
"input_select" ,
7
9
"input_selectize" ,
@@ -57,7 +59,7 @@ def input_selectize(
57
59
multiple : bool = False ,
58
60
width : Optional [str ] = None ,
59
61
remove_button : Optional [bool ] = None ,
60
- options : Optional [dict [str , str | float | JSEval ]] = None ,
62
+ options : Optional [dict [str , Jsonifiable | JSEval ]] = None ,
61
63
) -> Tag :
62
64
"""
63
65
Create a select list that can be used to choose a single or multiple items from a
@@ -137,7 +139,7 @@ def input_select(
137
139
width : Optional [str ] = None ,
138
140
size : Optional [str ] = None ,
139
141
remove_button : Optional [bool ] = None ,
140
- options : Optional [dict [str , str | float | JSEval ]] = None ,
142
+ options : Optional [dict [str , Jsonifiable | JSEval ]] = None ,
141
143
) -> Tag :
142
144
"""
143
145
Create a select list that can be used to choose a single or multiple items from a
You can’t perform that action at this time.
0 commit comments