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,14 +3,16 @@ from __future__ import unicode_literals
|
|||
import datetime
|
||||
|
||||
from django.conf import settings
|
||||
from django.db import transaction, DEFAULT_DB_ALIAS, models
|
||||
from django.db import DEFAULT_DB_ALIAS, models, transaction
|
||||
from django.db.utils import ConnectionHandler
|
||||
from django.test import TestCase, TransactionTestCase, skipUnlessDBFeature
|
||||
|
||||
from .models import (Book, Award, AwardNote, Person, Child, Toy, PlayedWith,
|
||||
PlayedWithNote, Email, Researcher, Food, Eaten, Policy, Version, Location,
|
||||
Item, Image, File, Photo, FooFile, FooImage, FooPhoto, FooFileProxy, Login,
|
||||
OrgUnit, OrderedPerson, House)
|
||||
from .models import (
|
||||
Award, AwardNote, Book, Child, Eaten, Email, File, Food, FooFile,
|
||||
FooFileProxy, FooImage, FooPhoto, House, Image, Item, Location, Login,
|
||||
OrderedPerson, OrgUnit, Person, Photo, PlayedWith, PlayedWithNote, Policy,
|
||||
Researcher, Toy, Version,
|
||||
)
|
||||
|
||||
|
||||
# Can't run this test under SQLite, because you can't
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue