(value)
| 85 | |
| 86 | @app.callback(Output('signal', 'data'), Input('dropdown', 'value')) |
| 87 | def compute_value(value): |
| 88 | # compute value and send a signal when done |
| 89 | global_store(value) |
| 90 | return value |
| 91 | |
| 92 | |
| 93 | @app.callback(Output('graph-1', 'figure'), Input('signal', 'data')) |
nothing calls this directly
no test coverage detected