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.
is_missing()
1 parent 7d13df9 commit 15f5562Copy full SHA for 15f5562
shiny/types.py
@@ -52,7 +52,7 @@ class MISSING_TYPE:
52
53
54
def is_missing(x: Any) -> TypeIs[MISSING_TYPE]:
55
- return x is MISSING or isinstance(x, MISSING_TYPE)
+ return isinstance(x, MISSING_TYPE)
56
57
58
# Information about a single file, with a structure like:
0 commit comments