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 6873b1c commit e9c73d9Copy full SHA for e9c73d9
shiny/ui/_input_update.py
@@ -213,7 +213,9 @@ def update_select(
213
options = None
214
else:
215
option_tags = _render_choices(_normalize_choices(choices), selected)
216
- options = session.process_ui(*option_tags)["html"]
+ # Typing problem due to a bug in pylance:
217
+ # https://github.com/microsoft/pylance-release/issues/2377
218
+ options = session.process_ui(option_tags)["html"] # type: ignore
219
220
msg = {
221
"label": label,
0 commit comments