Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ def log_message(message):
|
|
13 |
def useless_computation():
|
14 |
while True:
|
15 |
# This loop will keep running, performing pointless calculations
|
16 |
-
for i in range(
|
17 |
math.sqrt(i) # Taking the square root of numbers without any purpose
|
18 |
|
19 |
# Function to run update_embeddings.py periodically
|
|
|
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
|