diff --git a/benchmark/Arguments.py b/benchmark/Arguments.py index 57f490c..26d3d97 100644 --- a/benchmark/Arguments.py +++ b/benchmark/Arguments.py @@ -242,7 +242,10 @@ class Arguments(argparse.ArgumentParser): "default": "local", "choices": ["local", "docker"], "required": False, - "help": "in be_flask tells if it is running in local or in docker {local, docker}", + "help": ( + "in be_flask tells if it is running in local or " + "in docker {local, docker}" + ), }, ], "platform": [ diff --git a/benchmark/scripts/app/templates/select.html b/benchmark/scripts/app/templates/select.html index fccb625..2411a46 100644 --- a/benchmark/scripts/app/templates/select.html +++ b/benchmark/scripts/app/templates/select.html @@ -16,5 +16,5 @@ - {{ javascript('/js/excelFiles.js') }} + {{ javascript('js/excelFiles.js') }} {% endblock %} diff --git a/benchmark/scripts/be_flask.py b/benchmark/scripts/be_flask.py index 071f8ed..ef10285 100755 --- a/benchmark/scripts/be_flask.py +++ b/benchmark/scripts/be_flask.py @@ -12,6 +12,7 @@ def main(args_test=None): app = create_app() app.config[TEST] = args_test is not None app.config[OUTPUT] = args.output + print("Output is ", args.output) if args.output == "local": webbrowser.open_new("http://127.0.0.1:1234/") app.run(port=1234, host="0.0.0.0")