Fix typo in the long-running tasks example

This commit is contained in:
r0kym 2024-11-15 15:13:25 +01:00
parent 8d63801b00
commit 2125192f72

View File

@ -96,7 +96,7 @@ def long_runner():
my_tasks = list()
for _ in range(10):
task_signature = example.si()
my_task.append(task_signature)
my_tasks.append(task_signature)
chain(my_tasks).delay()
```