(props=dict())
| 8 | |
| 9 | |
| 10 | def get_app(props=dict()): |
| 11 | app = dash.Dash(__name__) |
| 12 | |
| 13 | baseProps = get_props() |
| 14 | |
| 15 | baseProps.update(dict(sort_action="native")) |
| 16 | baseProps.update(props) |
| 17 | |
| 18 | app.layout = DataTable(**baseProps) |
| 19 | |
| 20 | return app |
| 21 | |
| 22 | |
| 23 | @pytest.mark.parametrize("props", basic_modes) |
no test coverage detected
searching dependent graphs…