diff options
Diffstat (limited to 'tests/transactions/tests.py')
| -rw-r--r-- | tests/transactions/tests.py | 10 |
1 files changed, 7 insertions, 3 deletions
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 |
