Skip to content

Commit 8406906

Browse files
Update my_cron.py
1 parent a631ee0 commit 8406906

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/my_cron.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def main(token):
8888
updater = Updater(token, use_context=True)
8989
schedule.every(MINUTES_FOR_LOOP).minutes.do(cron, updater=updater)
9090
schedule.every().hour.do(ask_resume_survey, updater=updater)
91-
schedule.every(5).minutes.do(weekly_emotions_statistics, updater=updater)
91+
schedule.every().sunday.at("20:00").do(weekly_emotions_statistics, updater=updater)
9292
while True:
9393
schedule.run_pending()
9494
time.sleep(60)

0 commit comments

Comments
 (0)