ppsingh commited on
Commit
f15a168
1 Parent(s): acff600

statistics

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -34,9 +34,9 @@ with st.container():
34
  # st.write("")
35
  apps = [processing.app, target_extraction.app, netzero.app, ghg.app,
36
  sector.app, adapmit.app]
37
- multiplier_val = round(1/len(apps), 3)
38
  if st.button("Get the work done"):
39
- prg = st.progress(0.0)
40
  for i,func in enumerate(apps):
41
  func()
42
  prg.progress((i+1)*multiplier_val)
 
34
  # st.write("")
35
  apps = [processing.app, target_extraction.app, netzero.app, ghg.app,
36
  sector.app, adapmit.app]
37
+ multiplier_val = int(100/len(apps))
38
  if st.button("Get the work done"):
39
+ prg = st.progress(0)
40
  for i,func in enumerate(apps):
41
  func()
42
  prg.progress((i+1)*multiplier_val)