From 8cc175e32e79ae4e4730980a4f4cc8a2975f0165 Mon Sep 17 00:00:00 2001 From: Ilias Mentzelos Date: Sat, 30 Sep 2023 07:46:44 +0300 Subject: [PATCH] docs(python): fix introduction example (#2201) --- docs/gitbook/python/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/gitbook/python/introduction.md b/docs/gitbook/python/introduction.md index b366727b90..1262d473c7 100644 --- a/docs/gitbook/python/introduction.md +++ b/docs/gitbook/python/introduction.md @@ -42,7 +42,7 @@ In order to consume the jobs from the queue you need to use the Worker class, pr ```python from bullmq import Worker -async def process(job): +async def process(job, job_token): # job.data will include the data added to the queue return doSomethingAsync(job)