| 1 | class NoUpdate: |
| 2 | def to_plotly_json(self): # pylint: disable=no-self-use |
| 3 | return {"_dash_no_update": "_dash_no_update"} |
| 4 | |
| 5 | @staticmethod |
| 6 | def is_no_update(obj): |
| 7 | return ( |
| 8 | obj is NoUpdate |
| 9 | or isinstance(obj, NoUpdate) |
| 10 | or (isinstance(obj, dict) and obj == {"_dash_no_update": "_dash_no_update"}) |
| 11 | ) |
no outgoing calls
no test coverage detected
searching dependent graphs…