danhergir commited on
Commit
b2da7e6
1 Parent(s): e4038ea

This should work now

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -39,4 +39,7 @@ run_button = st.button(
39
  )
40
 
41
  if ims is not None:
42
- cols = st.columns(n_butterflies)
 
 
 
 
39
  )
40
 
41
  if ims is not None:
42
+ cols = st.columns(n_butterflies)
43
+ for j, im in enumerate(ims):
44
+ i = j % n_butterflies
45
+ cols[i].image(im, use_column_width=True)