diff --git a/benchmark/scripts/app/main.py b/benchmark/scripts/app/main.py index 5032cc1..999d28b 100755 --- a/benchmark/scripts/app/main.py +++ b/benchmark/scripts/app/main.py @@ -164,7 +164,7 @@ def excel(): @main.route("/config//") def config(framework, compare): - if not framework in current_app.config[FRAMEWORKS]: + if framework not in current_app.config[FRAMEWORKS]: message = f"framework {framework} not supported" return render_template("error.html", message=message) env = EnvData()