diff options
| author | Tim Graham <timograham@gmail.com> | 2016-06-16 09:07:51 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-06-16 10:32:06 -0400 |
| commit | 13d16697a0de87b37a046d5418426a02b810a5b0 (patch) | |
| tree | cbf169d90ab07d2ba14c808dd3be720de9661445 /tests/postgres_tests | |
| parent | 1cfcc02fc3a2352868fb102118aff22b6e05c610 (diff) | |
[1.9.x] Fixed flake8 2.6 warnings.
Backport of ea34426ae789d31b036f58c8fd59ce299649e91e from master
Diffstat (limited to 'tests/postgres_tests')
| -rw-r--r-- | tests/postgres_tests/migrations/0002_create_test_models.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/postgres_tests/migrations/0002_create_test_models.py b/tests/postgres_tests/migrations/0002_create_test_models.py index 4be219f722..0152f88a9f 100644 --- a/tests/postgres_tests/migrations/0002_create_test_models.py +++ b/tests/postgres_tests/migrations/0002_create_test_models.py @@ -3,7 +3,10 @@ from __future__ import unicode_literals from django.db import migrations, models -from ..fields import * # NOQA +from ..fields import ( + ArrayField, BigIntegerRangeField, DateRangeField, DateTimeRangeField, + FloatRangeField, HStoreField, IntegerRangeField, JSONField, +) class Migration(migrations.Migration): |
