From 2ae3e4af7df9f8035b3619d5d5f9abe5ec5e7734 Mon Sep 17 00:00:00 2001 From: ForeverPyrite Date: Wed, 26 Mar 2025 22:05:14 -0400 Subject: [PATCH] oops this is what I meant to put in the last one --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index c2ec2ab..0bafb9b 100644 --- a/app.py +++ b/app.py @@ -30,7 +30,7 @@ async def on_ready() -> None: print(f"{bot.user.name} is ready.") # After successful initialization, schedule tasks. -task_scheduler = BackgroundScheduler(timezone=pytz.timezone('EST')) +task_scheduler = BackgroundScheduler(timezone=pytz.timezone('EDT')) task_scheduler.add_job(lambda: bot.loop.create_task(send_quote()), 'cron', day_of_week='mon-fri', hour=8, minute=50) task_scheduler.add_job(lambda: bot.loop.create_task(send_quote()), 'cron', day_of_week='mon-fri', hour='8-14', minute="*/20", jitter=180) task_scheduler.add_job(lambda: bot.loop.create_task(after_class()), 'cron', day_of_week='mon-fri', hour=10, minute=55)