ppsingh commited on
Commit
7fd91ba
1 Parent(s): 5a88cd7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -9,7 +9,8 @@ import logging
9
  logging.getLogger().setLevel(logging.INFO)
10
  from utils.uploadAndExample import add_upload
11
  import appStore.doc_processing as processing
12
- import appStore.target as tapp_extraction
 
13
 
14
 
15
 
@@ -104,7 +105,7 @@ with st.expander("ℹ️ - About this app", expanded=False):
104
  st.write("")
105
 
106
  # apps to be run
107
- apps = [processing.app, tapp_extraction.app]
108
  #, sector.app, adapmit.app,
109
  # conditional.app, subtarget.app, category.app]
110
 
 
9
  logging.getLogger().setLevel(logging.INFO)
10
  from utils.uploadAndExample import add_upload
11
  import appStore.doc_processing as processing
12
+ import appStore.tapp as tapp_extraction
13
+ import appStore.adapmit as adapmit
14
 
15
 
16
 
 
105
  st.write("")
106
 
107
  # apps to be run
108
+ apps = [processing.app, tapp_extraction.app, adapmit.app]
109
  #, sector.app, adapmit.app,
110
  # conditional.app, subtarget.app, category.app]
111