peter2000 commited on
Commit
f2c5498
1 Parent(s): fb41620

Update apps/multiapp.py

Browse files
Files changed (1) hide show
  1. apps/multiapp.py +4 -4
apps/multiapp.py CHANGED
@@ -6,8 +6,8 @@ import logging
6
  logger = logging.getLogger(__name__)
7
 
8
  # Initialization
9
- if 'file' not in st.session_state:
10
- st.session_state['pipeline'] = None
11
 
12
 
13
  class MultiApp:
@@ -16,8 +16,8 @@ class MultiApp:
16
  """
17
  def __init__(self):
18
  self.apps = []
19
- #if 'file' not in st.session_state:
20
- # st.session_state['file'] = None
21
 
22
  def add_app(self, title, func):
23
  """Adds a new application.
 
6
  logger = logging.getLogger(__name__)
7
 
8
  # Initialization
9
+ #if 'file' not in st.session_state:
10
+ # st.session_state['embed_list'] = ["first"]
11
 
12
 
13
  class MultiApp:
 
16
  """
17
  def __init__(self):
18
  self.apps = []
19
+ if 'embed_list' not in st.session_state:
20
+ st.session_state['embed_list'] = ["first"]
21
 
22
  def add_app(self, title, func):
23
  """Adds a new application.