qwerty45-uiop commited on
Commit
7977841
·
verified ·
1 Parent(s): f4d94dc

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -1
src/streamlit_app.py CHANGED
@@ -25,7 +25,8 @@ st.set_page_config(
25
  @st.cache_data
26
  def load_data():
27
  try:
28
- df = pd.read_excel("src/BITS_INTERNS.xlsx"), sheet_name="Form Responses 1")
 
29
  df.columns = df.columns.str.strip()
30
  return df, None
31
  except FileNotFoundError:
 
25
  @st.cache_data
26
  def load_data():
27
  try:
28
+ df = pd.read_excel("src/BITS_INTERNS.xlsx", sheet_name="Form Responses 1")
29
+
30
  df.columns = df.columns.str.strip()
31
  return df, None
32
  except FileNotFoundError: