1
0
mirror of https://github.com/django/django.git synced 2025-04-04 21:46:40 +00:00

[1.11.x] Fixed incorrect import in docs/ref/models/expressions.txt.

Backport of 36f2262741311159e5c13eb5114fb9e902e2df31 from master
This commit is contained in:
lb1c 2017-03-15 13:09:48 +01:00 committed by Tim Graham
parent 4188b20e3a
commit 70e6064d6b

View File

@ -22,8 +22,8 @@ Some examples
.. code-block:: python
from django.db.models import F, Count
from django.db.models.functions import Length, Upper, Value
from django.db.models import F, Count, Value
from django.db.models.functions import Length, Upper
# Find companies that have more employees than chairs.
Company.objects.filter(num_employees__gt=F('num_chairs'))