Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -67,7 +67,7 @@ st.write('This application generates a summary of a datafile (.csv). Right now,
|
|
67 |
mode = st.selectbox('What kind of summary do you want?',
|
68 |
('Simple', 'Analytical'))
|
69 |
st.write('You selected: ' + mode + ' summary.')
|
70 |
-
title = st.text_input('Title of the .csv file', 'State minimum wage rates in the United States as of January 1 , 2020
|
71 |
st.write('Title of the file is: ' + title)
|
72 |
uploaded_file = st.file_uploader("Upload only .csv file")
|
73 |
if uploaded_file is not None and mode is not None and title is not None:
|
|
|
67 |
mode = st.selectbox('What kind of summary do you want?',
|
68 |
('Simple', 'Analytical'))
|
69 |
st.write('You selected: ' + mode + ' summary.')
|
70 |
+
title = st.text_input('Add appropriate Title of the .csv file', 'State minimum wage rates in the United States as of January 1 , 2020')
|
71 |
st.write('Title of the file is: ' + title)
|
72 |
uploaded_file = st.file_uploader("Upload only .csv file")
|
73 |
if uploaded_file is not None and mode is not None and title is not None:
|