From aff862dd6a6be4ca8ff18c313dbf6809d2188fdd Mon Sep 17 00:00:00 2001 From: Pavel Levchuk <105988332+16x16@users.noreply.github.com> Date: Mon, 30 May 2022 16:18:25 +1000 Subject: [PATCH] Fix syntax error in docs example (#1664) Adds a missing colon in function arguments --- docs/docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/index.md b/docs/docs/index.md index dc2d95a8..e39f9b81 100644 --- a/docs/docs/index.md +++ b/docs/docs/index.md @@ -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()