diff options
| author | Tim Graham <timograham@gmail.com> | 2015-02-09 13:19:34 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-02-09 14:24:06 -0500 |
| commit | a8b70d251d238b4e6cfc7bb4296da15494f8dff3 (patch) | |
| tree | 94ef5bc53e59131906aecfcf792eeac86242aa62 /tests/queryset_pickle | |
| parent | eb406aa686ff1809903366ef6896037af2f1f69b (diff) | |
[1.8.x] Sorted imports with isort; refs #23860.
Backport of 0ed7d155635da9f79d4dd67e4889087d3673c6da from master
Diffstat (limited to 'tests/queryset_pickle')
| -rw-r--r-- | tests/queryset_pickle/models.py | 2 | ||||
| -rw-r--r-- | tests/queryset_pickle/tests.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/queryset_pickle/models.py b/tests/queryset_pickle/models.py index 792369c575..6503d1f33a 100644 --- a/tests/queryset_pickle/models.py +++ b/tests/queryset_pickle/models.py @@ -1,6 +1,6 @@ import datetime -from django.db import models, DJANGO_VERSION_PICKLE_KEY +from django.db import DJANGO_VERSION_PICKLE_KEY, models from django.utils.translation import ugettext_lazy as _ from django.utils.version import get_major_version diff --git a/tests/queryset_pickle/tests.py b/tests/queryset_pickle/tests.py index 91fe304f9d..0d9687bf16 100644 --- a/tests/queryset_pickle/tests.py +++ b/tests/queryset_pickle/tests.py @@ -1,14 +1,14 @@ from __future__ import unicode_literals -import pickle import datetime +import pickle import warnings from django.test import TestCase from django.utils.encoding import force_text from django.utils.version import get_major_version, get_version -from .models import Group, Event, Happening, Container, M2MModel +from .models import Container, Event, Group, Happening, M2MModel class PickleabilityTestCase(TestCase): |
