Vera-ZWY commited on
Commit
cedf8bf
·
verified ·
1 Parent(s): c1952ce

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -163,8 +163,9 @@ def linePlot(viz_type, weight, top_n):
163
  top_n=top_n,
164
  api_name="/linePlot_3C1"
165
  )
166
- print(result)
167
- return decode_plot(result)
 
168
 
169
 
170
 
 
163
  top_n=top_n,
164
  api_name="/linePlot_3C1"
165
  )
166
+ # print(result)
167
+ # result is a tuble of dictionary of plot_base64, and a string message of description of the plot
168
+ return decode_plot(result[0])
169
 
170
 
171