Update app.py
Browse files
app.py
CHANGED
@@ -31,7 +31,6 @@ def load_dataset_into_session():
|
|
31 |
if st.button("Load Dataset"):
|
32 |
try:
|
33 |
st.session_state.df = pd.read_csv(file_path)
|
34 |
-
st.session_state.df = validate_and_clean_dataset(st.session_state.df)
|
35 |
st.success(f"File loaded successfully from '{file_path}'!")
|
36 |
except Exception as e:
|
37 |
st.error(f"Error loading dataset from the repo directory: {e}")
|
|
|
31 |
if st.button("Load Dataset"):
|
32 |
try:
|
33 |
st.session_state.df = pd.read_csv(file_path)
|
|
|
34 |
st.success(f"File loaded successfully from '{file_path}'!")
|
35 |
except Exception as e:
|
36 |
st.error(f"Error loading dataset from the repo directory: {e}")
|