Fix a typo I introduced in groups.rst

This commit is contained in:
Pierre-Elliott Bécue
2018-08-03 18:03:01 +02:00
parent da68a58fd6
commit e32bd8bb31

View File

@@ -70,10 +70,10 @@ or call them directly on :class:`AsyncTask` object:
.. code-block:: python
from django_q.tasks import async_task
from django_q.tasks import AsyncTask
# add a task to the math group and run it cached
a = async_task('math.floor', 2.5, group='math', cached=True)
a = AsyncTask('math.floor', 2.5, group='math', cached=True)
# wait until this tasks group has 10 results
result = a.result_group(count=10)