From 5dab16d9e933ff581193fcb48fd5a1e29bed51a7 Mon Sep 17 00:00:00 2001 From: Stanley Ruheza <48031010+maen08@users.noreply.github.com> Date: Fri, 20 Aug 2021 04:19:31 +0300 Subject: [PATCH] fix: typo on readme file - enqueue_in() (#1534) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c4285f92..0f72d4b4 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ Scheduling jobs are also similarly easy: ```python # Schedule job to run at 9:15, October 10th -job = queue.enqueue_at(datetime(2019, 10, 8, 9, 15), say_hello) +job = queue.enqueue_at(datetime(2019, 10, 10, 9, 15), say_hello) # Schedule job to run in 10 seconds job = queue.enqueue_in(timedelta(seconds=10), say_hello)