bluuebunny commited on
Commit
b71255d
·
verified ·
1 Parent(s): d1d8aff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -11,10 +11,8 @@ def log_message(message):
11
 
12
 
13
  def useless_computation():
14
- while True:
15
- # This loop will keep running, performing pointless calculations
16
- for i in range(1000):
17
- math.sqrt(i) # Taking the square root of numbers without any purpose
18
 
19
  # Function to run update_embeddings.py periodically
20
  def run_script_periodically():
 
11
 
12
 
13
  def useless_computation():
14
+ for i in range(1000):
15
+ math.sqrt(i) # Taking the square root of numbers without any purpose
 
 
16
 
17
  # Function to run update_embeddings.py periodically
18
  def run_script_periodically():