Geek7 commited on
Commit
0b15bc2
·
verified ·
1 Parent(s): c274007

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -13,10 +13,10 @@ def main():
13
  progress_text = st.empty()
14
 
15
  # Simulate signal fetching (replace this with actual signal fetching code)
16
- for i in range(10):
17
  time.sleep(0.5) # Simulating signal fetching delay
18
- progress_bar.progress((i + 1) / 10)
19
- progress_text.text(f"Fetching signals... {i + 1}/10")
20
 
21
  # Hide progress bar and text
22
  progress_bar.empty()
 
13
  progress_text = st.empty()
14
 
15
  # Simulate signal fetching (replace this with actual signal fetching code)
16
+ for i in range(50):
17
  time.sleep(0.5) # Simulating signal fetching delay
18
+ progress_bar.progress((i + 1) / 50)
19
+ progress_text.text(f"Fetching signals... {i + 1}/50")
20
 
21
  # Hide progress bar and text
22
  progress_bar.empty()