From e20877978bdbb2a408250b6e742620276bd2064c Mon Sep 17 00:00:00 2001 From: Yonasnegash Date: Sun, 9 Feb 2020 23:37:04 +0300 Subject: [PATCH] fix issues for coplots --- url_handlers/coplots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/url_handlers/coplots.py b/url_handlers/coplots.py index 41dccd0..65d872a 100644 --- a/url_handlers/coplots.py +++ b/url_handlers/coplots.py @@ -60,7 +60,7 @@ def post_coplots(): # get joined categorical values if not error_message: categorical_df, error_message = rwh.get_joined_categorical_values([category1, category2], rdb) - numeric_df, error = rwh.get_joined_numeric_values([x_axis, y_axis], rdb) if not error_message else (None, error_message) + numeric_df, error_message = rwh.get_joined_numeric_values([x_axis, y_axis], rdb) if not error_message else (None, error_message) error_message = "No data based on the selected options" if error_message else None if error_message: