From 564e8b5f062b50b23f655ec7734f103a2e3b6723 Mon Sep 17 00:00:00 2001 From: chenwj113 Date: Tue, 16 May 2023 22:28:00 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E5=AE=9A=E6=97=B6?= =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tasks/cron_tasks.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/cron_tasks.py b/tasks/cron_tasks.py index 63f54b2..a175f76 100644 --- a/tasks/cron_tasks.py +++ b/tasks/cron_tasks.py @@ -37,15 +37,15 @@ def get_data_job(lottery_type='pls'): print(f'issue:{draw_issue}已经存在') -@repeat(every().day.at("18:01")) +@repeat(every().day.at("00:01")) def pls_job(): get_data_job(lottery_type='pls') -@repeat(every().day.at("18:02")) +@repeat(every().day.at("00:02")) def plw_job(): get_data_job(lottery_type='plw') -@repeat(every().day.at("18:03")) +@repeat(every().day.at("00:03")) def sd_job(): get_data_job(lottery_type='sd')