Rowan Martnishn commited on
Commit
024996b
·
verified ·
1 Parent(s): b816d25

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -245,8 +245,8 @@ def run_daily():
245
  process_data()
246
  print("Data refreshed at:", datetime.datetime.now())
247
 
248
- # schedule.every().day.at("00:00").do(run_daily)
249
- schedule.every(10).seconds.do(run_daily)
250
 
251
  def run_schedule():
252
  while True:
 
245
  process_data()
246
  print("Data refreshed at:", datetime.datetime.now())
247
 
248
+ schedule.every().day.at("00:00").do(run_daily)
249
+ #schedule.every(10).seconds.do(run_daily)
250
 
251
  def run_schedule():
252
  while True: