Pārlūkot izejas kodu

Fixed incorrect import in docs/ref/models/expressions.txt.

lb1c 8 gadi atpakaļ
vecāks
revīzija
36f2262741
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      docs/ref/models/expressions.txt

+ 2 - 2
docs/ref/models/expressions.txt

@@ -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'))