summaryrefslogtreecommitdiff
path: root/django/db/models/aggregates.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/db/models/aggregates.py')
-rw-r--r--django/db/models/aggregates.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/aggregates.py b/django/db/models/aggregates.py
index c1ddc75d4c..01ab61f71a 100644
--- a/django/db/models/aggregates.py
+++ b/django/db/models/aggregates.py
@@ -3,7 +3,7 @@ Classes to represent the definitions of aggregate functions.
"""
from django.core.exceptions import FieldError
from django.db.models.expressions import Func, Value
-from django.db.models.fields import IntegerField, FloatField
+from django.db.models.fields import FloatField, IntegerField
__all__ = [
'Aggregate', 'Avg', 'Count', 'Max', 'Min', 'StdDev', 'Sum', 'Variance',