celik-muhammed commited on
Commit
e3623b2
·
verified ·
1 Parent(s): 69087b7

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +3 -5
src/streamlit_app.py CHANGED
@@ -3,9 +3,7 @@
3
  # Now import your app modules
4
  import streamlit as st
5
 
6
- from scikitplot.ui_app.streamlit import template_st_app
7
 
8
- # Run the app from command line
9
- if __name__ == "__main__":
10
- ## app entry-point
11
- template_st_app.run_app_ui()
 
3
  # Now import your app modules
4
  import streamlit as st
5
 
6
+ from scikitplot.ui_app.streamlit.template_st_app import run_app_ui
7
 
8
+ ## app entry-point
9
+ run_app_ui()