From b7d26b82b1577fab5ff0b321bce57c8e304f6f48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana?= Date: Thu, 1 Jun 2023 01:14:38 +0200 Subject: [PATCH] flavour fix --- benchmark/scripts/app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()