fix: typo on readme file - enqueue_in() (#1534)

This commit is contained in:
Stanley Ruheza 2021-08-20 04:19:31 +03:00 committed by GitHub
parent 9737ffa95f
commit 5dab16d9e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ Scheduling jobs are also similarly easy:
```python ```python
# Schedule job to run at 9:15, October 10th # 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 # Schedule job to run in 10 seconds
job = queue.enqueue_in(timedelta(seconds=10), say_hello) job = queue.enqueue_in(timedelta(seconds=10), say_hello)