awacke1 commited on
Commit
1fa4bfa
·
1 Parent(s): 03c2c4b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -41,10 +41,10 @@ with c30:
41
  uploaded_file = st.file_uploader("", key="1", help="To activate 'wide mode', go to the menu > Settings > turn on 'wide mode'",)
42
  if uploaded_file is not None:
43
  file_container = st.expander("Check your uploaded .csv")
44
- try:
45
- shows = pd.read_csv(uploaded_file)
46
- except:
47
- print(sys.exc_info()[2])
48
 
49
  uploaded_file.seek(0)
50
  file_container.write(shows)
 
41
  uploaded_file = st.file_uploader("", key="1", help="To activate 'wide mode', go to the menu > Settings > turn on 'wide mode'",)
42
  if uploaded_file is not None:
43
  file_container = st.expander("Check your uploaded .csv")
44
+ #try:
45
+ shows = pd.read_csv(uploaded_file)
46
+ #except:
47
+ # print(sys.exc_info()[2])
48
 
49
  uploaded_file.seek(0)
50
  file_container.write(shows)