summaryrefslogtreecommitdiff
path: root/tests/annotations/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/annotations/tests.py')
-rw-r--r--tests/annotations/tests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/annotations/tests.py b/tests/annotations/tests.py
index 90a9c13048..2bf441716b 100644
--- a/tests/annotations/tests.py
+++ b/tests/annotations/tests.py
@@ -1,16 +1,16 @@
from __future__ import unicode_literals
+
import datetime
from decimal import Decimal
from django.core.exceptions import FieldDoesNotExist, FieldError
from django.db.models import (
- Sum, Count,
- F, Value, Func,
- IntegerField, BooleanField, CharField)
+ F, BooleanField, CharField, Count, Func, IntegerField, Sum, Value,
+)
from django.test import TestCase
from django.utils import six
-from .models import Author, Book, Store, DepartmentStore, Company, Employee
+from .models import Author, Book, Company, DepartmentStore, Employee, Store
def cxOracle_513_py3_bug(func):