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