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 d07e522 commit 9827157Copy full SHA for 9827157
dash/_no_update.py
@@ -4,6 +4,6 @@ def to_plotly_json(self): # pylint: disable=no-self-use
4
5
@staticmethod
6
def is_no_update(obj):
7
- return isinstance(obj, NoUpdate) or (
+ return obj is NoUpdate or isinstance(obj, NoUpdate) or (
8
isinstance(obj, dict) and obj == {"_dash_no_update": "_dash_no_update"}
9
)
0 commit comments