(_)
| 500 | Output("store", "data"), Input("add-one", "n_clicks"), prevent_initial_call=True |
| 501 | ) |
| 502 | def on_add(_): |
| 503 | patched = Patch() |
| 504 | patched += 1 |
| 505 | return patched |
| 506 | |
| 507 | @app.callback( |
| 508 | Output("store", "data", allow_duplicate=True), |
nothing calls this directly
no test coverage detected
searching dependent graphs…