From a9fc9814760d205674904f8feb700eadae480fb1 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Mon, 27 Sep 2021 05:25:58 +0300 Subject: Remove unnecessary variable. Issue: https://github.com/genenetwork/gn-gemtext-threads/blob/main/topics/gn1-migration-to-gn2/clustering.gmi * Fix issue according to review https://github.com/genenetwork/genenetwork3/pull/37#discussion_r714549781 --- gn3/api/heatmaps.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gn3') diff --git a/gn3/api/heatmaps.py b/gn3/api/heatmaps.py index fe47aee..62ca2ad 100644 --- a/gn3/api/heatmaps.py +++ b/gn3/api/heatmaps.py @@ -17,8 +17,7 @@ def clustered_heatmaps(): Parses the incoming data and responds with the JSON-serialized plotly figure representing the clustered heatmap. """ - heatmap_request = request.get_json() - traits_names = heatmap_request.get("traits_names", tuple()) + traits_names = request.get_json().get("traits_names", tuple()) if len(traits_names) < 2: return jsonify({ "message": "You need to provide at least two trait names." -- cgit v1.2.3