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)