Spaces:
Runtime error
Runtime error
gaspar-avit
commited on
Commit
·
1decd4a
1
Parent(s):
9a43bce
Upload app.py
Browse files
app.py
CHANGED
@@ -212,9 +212,8 @@ def generate_poster(movie_data):
|
|
212 |
|
213 |
# Get movie genres
|
214 |
genres = [i['name'] for i in eval(movie_data['genres'].values[0])]
|
215 |
-
|
216 |
-
|
217 |
-
genres_string = []
|
218 |
|
219 |
# Get summarization of movie synopsis
|
220 |
st.text("")
|
|
|
212 |
|
213 |
# Get movie genres
|
214 |
genres = [i['name'] for i in eval(movie_data['genres'].values[0])]
|
215 |
+
genres_string = ', '.join(genres)
|
216 |
+
|
|
|
217 |
|
218 |
# Get summarization of movie synopsis
|
219 |
st.text("")
|