aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gn3/api/heatmaps.py3
1 files changed, 1 insertions, 2 deletions
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."