Awlly commited on
Commit
640cd56
1 Parent(s): 110d8eb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -22,7 +22,7 @@ if st.button('Recommend') and user_description:
22
  for idx in recommended_shows.index:
23
  with st.container():
24
  link = data.loc[idx, 'url']
25
- poster_url = data.loc[idx, 'poster']
26
  title = data.loc[idx, 'title']
27
  description = data.loc[idx, 'description']
28
 
 
22
  for idx in recommended_shows.index:
23
  with st.container():
24
  link = data.loc[idx, 'url']
25
+ poster_url = data.loc[idx, 'img']
26
  title = data.loc[idx, 'title']
27
  description = data.loc[idx, 'description']
28