소스 검색

修改运行时间

zhangyong 1 년 전
부모
커밋
72911cb22b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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()