This commit is contained in:
xyj 2024-03-02 10:54:50 +08:00
parent 409a32bda5
commit f4eacbd4e3
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ def job():
# 每半小时执行一次
schedule.every(10).minutes.do(job)
schedule.every(1).minutes.do(job)
try:
while True:
schedule.run_pending()