From 6c7231c0dec704ad2722e12190914ce5cf8822fd Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Fri, 17 Dec 2021 11:01:32 +0300 Subject: Use list rather than tuple Issue: https://github.com/genenetwork/gn-gemtext-threads/blob/main/topics/gn1-migration-to-gn2/partial-correlations.gmi * Using a tuple, rather than a list for the HTTP methods in the route definition causes an error. This fixes that by using a list. --- wqflask/wqflask/partial_correlations_views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wqflask/wqflask/partial_correlations_views.py b/wqflask/wqflask/partial_correlations_views.py index 9a443897..0b7ffd37 100644 --- a/wqflask/wqflask/partial_correlations_views.py +++ b/wqflask/wqflask/partial_correlations_views.py @@ -221,7 +221,7 @@ def pcorrelations(conn, values): tuple(trait_fullname(trait) for trait in values["control_traits"]), values["method"], values["criteria"], values["target_db"]) -@app.route("/partial_correlations", methods=("POST",)) +@app.route("/partial_correlations", methods=["POST"]) def partial_correlations(): form = request.form traits_list = tuple(filter( -- cgit v1.2.3