From 0ed7d155635da9f79d4dd67e4889087d3673c6da Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 28 Jan 2015 07:35:27 -0500 Subject: Sorted imports with isort; refs #23860. --- tests/migration_test_data_persistence/migrations/0001_initial.py | 2 +- tests/migration_test_data_persistence/tests.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/migration_test_data_persistence') diff --git a/tests/migration_test_data_persistence/migrations/0001_initial.py b/tests/migration_test_data_persistence/migrations/0001_initial.py index d49c47b188..6c19c4c81c 100644 --- a/tests/migration_test_data_persistence/migrations/0001_initial.py +++ b/tests/migration_test_data_persistence/migrations/0001_initial.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -from django.db import models, migrations +from django.db import migrations, models class Migration(migrations.Migration): diff --git a/tests/migration_test_data_persistence/tests.py b/tests/migration_test_data_persistence/tests.py index 0b6369db4b..316cd21965 100644 --- a/tests/migration_test_data_persistence/tests.py +++ b/tests/migration_test_data_persistence/tests.py @@ -1,4 +1,5 @@ -from django.test import TransactionTestCase, TestCase +from django.test import TestCase, TransactionTestCase + from .models import Book -- cgit v1.3