Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -425,7 +425,7 @@ with tabs[4]:
|
|
| 425 |
|
| 426 |
# Clear cache and reload fresh
|
| 427 |
st.cache_data.clear()
|
| 428 |
-
df, meta_df = load_data(csv_path=CSV_PATH
|
| 429 |
|
| 430 |
numeric_cols = df.select_dtypes(include=[np.number]).columns.tolist()
|
| 431 |
|
|
|
|
| 425 |
|
| 426 |
# Clear cache and reload fresh
|
| 427 |
st.cache_data.clear()
|
| 428 |
+
df, meta_df = load_data(csv_path=CSV_PATH, meta_path=META_PATH)
|
| 429 |
|
| 430 |
numeric_cols = df.select_dtypes(include=[np.number]).columns.tolist()
|
| 431 |
|