Browse Source

修改运行时间

zhangyong 1 year ago
parent
commit
72911cb22b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      main.py

+ 2 - 2
main.py

@@ -17,8 +17,8 @@ def job_douyin_data():
 # 设置上午10点运行任务
 schedule.every().day.at("14:00").do(job_douyin_data)
 
-# 设置午4点运行任务
-schedule.every().day.at("10:50").do(job_video_stitching)
+# 设置午4点运行任务
+schedule.every().day.at("10:55").do(job_video_stitching)
 
 while True:
     schedule.run_pending()