Update app.py
Browse files
app.py
CHANGED
@@ -26,6 +26,8 @@ col1, col2, col3 = st.columns((1,1,1))
|
|
26 |
|
27 |
col1.header("Select Sentiments")
|
28 |
sentiments = col1.multiselect("",["Happy","Sad","Neutral"],["Happy","Sad","Neutral"])
|
|
|
|
|
29 |
additional_sentiments = col1.text_input("Enter comma separated sentiments.")
|
30 |
|
31 |
if additional_sentiments:
|
|
|
26 |
|
27 |
col1.header("Select Sentiments")
|
28 |
sentiments = col1.multiselect("",["Happy","Sad","Neutral"],["Happy","Sad","Neutral"])
|
29 |
+
col1.markdown(" \n")
|
30 |
+
|
31 |
additional_sentiments = col1.text_input("Enter comma separated sentiments.")
|
32 |
|
33 |
if additional_sentiments:
|