Multichem commited on
Commit
1484753
·
verified ·
1 Parent(s): 776ebad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -446,7 +446,8 @@ with tab2:
446
  st.session_state.stack_freq['Exposure'] = st.session_state.stack_freq['Freq']/(1000)
447
 
448
  with st.container():
449
- st.dataframe(st.session_state.Sim_Winner_Frame)
 
450
 
451
  with st.container():
452
  tab1, tab2, tab3, tab4 = st.tabs(['Overall Exposures', 'SP Exposures', 'Team Exposures', 'Stack Size Exposures'])
 
446
  st.session_state.stack_freq['Exposure'] = st.session_state.stack_freq['Freq']/(1000)
447
 
448
  with st.container():
449
+ if 'Sim_Winner_Frame' in st.session_state:
450
+ st.dataframe(st.session_state.Sim_Winner_Frame)
451
 
452
  with st.container():
453
  tab1, tab2, tab3, tab4 = st.tabs(['Overall Exposures', 'SP Exposures', 'Team Exposures', 'Stack Size Exposures'])