Closed ckoerber closed 3 years ago
Slightly more clean setup API for the GUI class to hide standard dependencies.
setup
app = Dash(...) fit_gui.setup(app)
now becomes
fit_gui.setup_app()
Which hides the Dash setup.
Dash
It is also possible to pass a preconfigured app. Furthermore
fit_gui.run_server(...)
now configures an app if not done before.
This required changing a few unit tests, and should be merged after the docs PR #18.
A few more (mental) tests are needed.
Slightly more clean
setup
API for the GUI class to hide standard dependencies.now becomes
Which hides the
Dash
setup.It is also possible to pass a preconfigured app. Furthermore
now configures an app if not done before.
This required changing a few unit tests, and should be merged after the docs PR #18.
A few more (mental) tests are needed.