Skip to content

Commit

Permalink
fix issues for coplots
Browse files Browse the repository at this point in the history
  • Loading branch information
Yonasnegash committed Feb 9, 2020
1 parent b7f5b79 commit e208779
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion url_handlers/coplots.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit e208779

Please sign in to comment.