Corrección
Browse filesSe corrijió problemas de comillas en el subheader.
app.py
CHANGED
@@ -11,7 +11,7 @@ from src.models.plot_similarity_finder import plot_simil
|
|
11 |
|
12 |
# WebApp title and subtitle
|
13 |
st.title('Film Recommender')
|
14 |
-
st.subheader(
|
15 |
|
16 |
# Plot input.
|
17 |
user_plot = st.text_area("Write your plot here...")
|
|
|
11 |
|
12 |
# WebApp title and subtitle
|
13 |
st.title('Film Recommender')
|
14 |
+
st.subheader("Write a plot and I'll look for films with similar ideas.")
|
15 |
|
16 |
# Plot input.
|
17 |
user_plot = st.text_area("Write your plot here...")
|