summaryrefslogtreecommitdiff
path: root/tests/schema/fields.py
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2015-09-21 22:55:18 +0200
committerAymeric Augustin <aymeric.augustin@m4x.org>2015-09-21 22:55:18 +0200
commit8bcff10b5aaca6aa9698939f7049d4db0461710c (patch)
treeec298129f45f09c1bf51ac9933cd4c85ec4c7f3f /tests/schema/fields.py
parent91e9f1c972842284a94097e252307ce6ed1007a1 (diff)
downloaddjango-8bcff10b5aaca6aa9698939f7049d4db0461710c.tar.gz
Fix import sorting problem.
Diffstat (limited to 'tests/schema/fields.py')
-rw-r--r--tests/schema/fields.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/schema/fields.py b/tests/schema/fields.py
index 30357b1061..5f2b6ba19c 100644
--- a/tests/schema/fields.py
+++ b/tests/schema/fields.py
@@ -1,8 +1,7 @@
from django.db import models
from django.db.models.fields.related import (
- RECURSIVE_RELATIONSHIP_CONSTANT, ManyToManyDescriptor,
- ManyToManyField, ManyToManyRel, RelatedField,
- create_many_to_many_intermediary_model,
+ RECURSIVE_RELATIONSHIP_CONSTANT, ManyToManyDescriptor, ManyToManyField,
+ ManyToManyRel, RelatedField, create_many_to_many_intermediary_model,
)
from django.utils.functional import curry