EdBianchi commited on
Commit
ab3d7cd
·
1 Parent(s): e8eb4f7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -81,18 +81,18 @@ with st.spinner("Getting the best movies..."):
81
  st.write("## What to watch next....")
82
  col1, col2, col3 = st.columns(3)
83
  with col1:
84
- st.image(recs[0])
85
  st.write(plots[0])
86
  with col2:
87
- st.image(recs[1])
88
  st.write(plots[1])
89
  with col3:
90
- st.image(recs[2])
91
  st.write(plots[2])
92
 
93
  col4, col5, col6 = st.columns(3)
94
  with col4:
95
- st.image(recs[3])
96
  st.write(plots[3])
97
  with col5:
98
  st.image(recs[4])
 
81
  st.write("## What to watch next....")
82
  col1, col2, col3 = st.columns(3)
83
  with col1:
84
+ st.image(recs[0], use_column_width=True)
85
  st.write(plots[0])
86
  with col2:
87
+ st.image(recs[1], use_column_width=True)
88
  st.write(plots[1])
89
  with col3:
90
+ st.image(recs[2], use_column_width=True)
91
  st.write(plots[2])
92
 
93
  col4, col5, col6 = st.columns(3)
94
  with col4:
95
+ st.image(recs[3], use_column_width=True)
96
  st.write(plots[3])
97
  with col5:
98
  st.image(recs[4])