From 39e6e71da188f1b4b820060d60a52bd96ae82068 Mon Sep 17 00:00:00 2001 From: carlos Date: Mon, 30 Sep 2024 23:40:34 -0700 Subject: [PATCH] Updated hour to accomodate TZ --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index f467068..e21f377 100644 --- a/app.py +++ b/app.py @@ -53,7 +53,7 @@ def write_to_google_spreadsheet(df: pd.DataFrame): set_with_dataframe(worksheet, df) -@huey.periodic_task(crontab(hour='6', minute='0')) +@huey.periodic_task(crontab(hour='13', minute='0')) def process_daily_report(): league = League(league_id=cfg.LEAGUE_ID, year=datetime.now().year,