mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Sorted imports with isort; refs #23860.
This commit is contained in:
parent
388d986b8a
commit
0ed7d15563
793 changed files with 2551 additions and 2333 deletions
|
@ -3,16 +3,16 @@ from __future__ import unicode_literals
|
|||
import threading
|
||||
import time
|
||||
|
||||
from multiple_database.routers import TestRouter
|
||||
|
||||
from django.conf import settings
|
||||
from django.db import transaction, connection, router
|
||||
from django.db.utils import ConnectionHandler, DEFAULT_DB_ALIAS, DatabaseError
|
||||
from django.db import connection, router, transaction
|
||||
from django.db.utils import DEFAULT_DB_ALIAS, ConnectionHandler, DatabaseError
|
||||
from django.test import (
|
||||
TransactionTestCase, override_settings, skipIfDBFeature,
|
||||
skipUnlessDBFeature,
|
||||
)
|
||||
|
||||
from multiple_database.routers import TestRouter
|
||||
|
||||
from .models import Person
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue