saadob12 commited on
Commit
9e7a428
·
1 Parent(s): c344f79

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 , by state ( in U.S. dollars )')
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: