nyomanyudisdeveloper commited on
Commit
f8a16fe
·
verified ·
1 Parent(s): 84c2f86

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -1,10 +1,7 @@
1
- import streamlit as st
2
- import eda
3
  import predict
4
 
5
  navigation = st.sidebar.selectbox('Pilih Halaman:', {'EDA':'Predict'})
6
 
7
  if navigation == 'EDA':
8
- eda.run()
9
- else:
10
- predict.run()
 
1
+ import streamlit as st
 
2
  import predict
3
 
4
  navigation = st.sidebar.selectbox('Pilih Halaman:', {'EDA':'Predict'})
5
 
6
  if navigation == 'EDA':
7
+ eda.run()