diff options
author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2015-09-21 22:55:18 +0200 |
---|---|---|
committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2015-09-21 22:55:18 +0200 |
commit | 8bcff10b5aaca6aa9698939f7049d4db0461710c (patch) | |
tree | ec298129f45f09c1bf51ac9933cd4c85ec4c7f3f /tests/schema/fields.py | |
parent | 91e9f1c972842284a94097e252307ce6ed1007a1 (diff) | |
download | django-8bcff10b5aaca6aa9698939f7049d4db0461710c.tar.gz |
Fix import sorting problem.
Diffstat (limited to 'tests/schema/fields.py')
-rw-r--r-- | tests/schema/fields.py | 5 |
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 |