summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2021-01-12 10:51:38 +0100
committerGitHub <noreply@github.com>2021-01-12 10:51:38 +0100
commitfdc3d9dcaf87fb0a1350154561053faa331c3b69 (patch)
treead0a121d3317b7f9fe939a99928010e2ae6d1513 /docs
parent64331419c848a8b6835b25f2c600d7150f722c96 (diff)
Removed unused import in docs/ref/models/expressions.txt. (#13879)
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/models/expressions.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/expressions.txt b/docs/ref/models/expressions.txt
index 51addc4812..06d9887658 100644
--- a/docs/ref/models/expressions.txt
+++ b/docs/ref/models/expressions.txt
@@ -890,7 +890,7 @@ values of an expression in the partition. If the ``released`` field of the
example annotates each movie with the average rating of a movie's peers
released between twelve months before and twelve months after the each movie.
- >>> from django.db.models import Avg, ExpressionList, F, ValueRange, Window
+ >>> from django.db.models import Avg, F, ValueRange, Window
>>> Movie.objects.annotate(
>>> avg_rating=Window(
>>> expression=Avg('rating'),