Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -21,7 +21,7 @@ def random_selection(movies):
|
|
| 21 |
return random_movies
|
| 22 |
|
| 23 |
movie = st.text_input("Search for movie")
|
| 24 |
-
if 'random_movies' not in :
|
| 25 |
st.session_state['random_movies'] = []
|
| 26 |
|
| 27 |
|
|
|
|
| 21 |
return random_movies
|
| 22 |
|
| 23 |
movie = st.text_input("Search for movie")
|
| 24 |
+
if 'random_movies' not in st.session_state:
|
| 25 |
st.session_state['random_movies'] = []
|
| 26 |
|
| 27 |
|