Kseniia-Kholina commited on
Commit
37ffe44
·
verified ·
1 Parent(s): 71532a4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -64,7 +64,10 @@ def get_heatmap(sequence):
64
  plt.yticks(rotation=0)
65
  plt.xticks(y_tick_positions, y_tick_labels, rotation = 0)
66
 
67
- return plt
 
 
 
68
 
69
 
70
 
 
64
  plt.yticks(rotation=0)
65
  plt.xticks(y_tick_positions, y_tick_labels, rotation = 0)
66
 
67
+ fig = plt.gcf()
68
+ plt.close(fig)
69
+
70
+ return fig
71
 
72
 
73