(value)
| 136 | |
| 137 | @app.callback(Output('graph-4', 'figure'), Input('signal', 'data')) |
| 138 | def update_graph_4(value): |
| 139 | return generate_figure(value, {'data': [{ |
| 140 | 'type': 'histogram2dcontour', |
| 141 | }]}) |
| 142 | |
| 143 | |
| 144 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected