Fix syntax error in docs example (#1664)

Adds a missing colon in function arguments
This commit is contained in:
Pavel Levchuk 2022-05-30 16:18:25 +10:00 committed by GitHub
parent a69498e185
commit aff862dd6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ with q.connection.pipeline() as pipe:
[
Queue.prepare_data(count_words_at_url, 'http://nvie.com', job_id='my_job_id'),
Queue.prepare_data(count_words_at_url, 'http://nvie.com', job_id='my_other_job_id'),
]
],
pipeline=pipe
)
pipe.execute()