mirror of
https://github.com/django/django.git
synced 2025-10-27 15:46:10 +00:00
[1.8.x] Sorted imports with isort; refs #23860.
Backport of 0ed7d15563 from master
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user