From dd14c9ff451b1e77aa0eaef9b2b1fd5bac2c664d Mon Sep 17 00:00:00 2001 From: chenwj113 Date: Sun, 21 May 2023 21:32:27 +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 --- main.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/main.py b/main.py index 3a921ce..0bb0c24 100644 --- a/main.py +++ b/main.py @@ -34,7 +34,7 @@ def get_data_job(lottery_type='pls'): print(f'issue:{draw_issue}已经存在') -@repeat(every().day.at("00:01")) +@repeat(every().day.at("21:50")) def pls_job(): get_data_job(lottery_type='pls') @@ -46,10 +46,6 @@ def plw_job(): def sd_job(): get_data_job(lottery_type='sd') -@repeat(every().day.at("21:30")) -def print_hello(): - print("hello at: 21:30") - while True: run_pending() time.sleep(1)