Skip to content

Commit

Permalink
docs(python): fix introduction example (#2201)
Browse files Browse the repository at this point in the history
  • Loading branch information
iliasmentz authored Sep 30, 2023
1 parent 5ebb185 commit 8cc175e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/gitbook/python/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 8cc175e

Please sign in to comment.