Skip to content

Commit

Permalink
Fix the dumb typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DoomHammer committed Dec 21, 2023
1 parent 34047bd commit 72c7d64
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,10 @@ async def on_ready():
scheduler = AsyncIOScheduler()

scheduler.add_job(
advent_event, CronTrigger(day_of_week="0-6", hour="4", minute="45", second="0", id="advent_event", replace_existing=True)
advent_event,
CronTrigger(day_of_week="0-6", hour="4", minute="45", second="0"),
id="advent_event",
replace_existing=True,
)

scheduler.start()
Expand Down

0 comments on commit 72c7d64

Please sign in to comment.