Update src/streamlit_app.py
Browse files- 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"
|
|
|
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:
|