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/transactions/tests.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'tests/transactions') diff --git a/tests/transactions/tests.py b/tests/transactions/tests.py index bf4735e0d2..dab406dbac 100644 --- a/tests/transactions/tests.py +++ b/tests/transactions/tests.py @@ -5,9 +5,13 @@ import threading import time from unittest import skipIf, skipUnless -from django.db import (connection, transaction, - DatabaseError, Error, IntegrityError, OperationalError) -from django.test import TransactionTestCase, skipIfDBFeature, skipUnlessDBFeature +from django.db import ( + DatabaseError, Error, IntegrityError, OperationalError, connection, + transaction, +) +from django.test import ( + TransactionTestCase, skipIfDBFeature, skipUnlessDBFeature, +) from django.utils import six from .models import Reporter -- cgit v1.3