mirror of
https://github.com/django/django.git
synced 2025-08-04 10:59:45 +00:00
Tweaked docs to avoid reformatting given new black version.
This commit is contained in:
parent
cbb0812683
commit
fd3cfd80be
2 changed files with 8 additions and 9 deletions
|
@ -51,11 +51,10 @@ General-purpose aggregation functions
|
|||
|
||||
Examples::
|
||||
|
||||
"some_field"
|
||||
"-some_field"
|
||||
from django.db.models import F
|
||||
|
||||
F("some_field").desc()
|
||||
ArrayAgg("a_field", order_by="-some_field")
|
||||
ArrayAgg("a_field", order_by=F("some_field").desc())
|
||||
|
||||
.. deprecated:: 5.2
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue