Skip to content

Commit 07af7a8

Browse files
fix: typo
1 parent 0e56b27 commit 07af7a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shiny/ui/_input_select.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ def _contains_html(x: _SelectChoices) -> bool:
345345
if isinstance(v, Mapping):
346346
# Check the `_Choices` values of `_OptGrpChoices`
347347
for vv in v.values():
348-
if not is instance(vv, str):
348+
if not isinstance(vv, str):
349349
return True
350350
else:
351351
if not isinstance(v, str):

0 commit comments

Comments
 (0)