mirror of
https://github.com/django/django.git
synced 2025-07-06 18:59:13 +00:00
isort changes required
This commit is contained in:
parent
a29bd71fca
commit
d907279850
@ -641,7 +641,7 @@ STATICFILES_FINDERS = [
|
|||||||
##############
|
##############
|
||||||
|
|
||||||
# Executor to use for migration.
|
# Executor to use for migration.
|
||||||
MIGRATION_EXECUTOR_BACKEND = 'django.db.migrations.executor.MigrationExecutor'
|
MIGRATION_EXECUTOR_BACKEND = "django.db.migrations.executor.MigrationExecutor"
|
||||||
|
|
||||||
# Migration module overrides for apps, by app label.
|
# Migration module overrides for apps, by app label.
|
||||||
MIGRATION_MODULES = {}
|
MIGRATION_MODULES = {}
|
||||||
|
@ -2,9 +2,9 @@ import datetime
|
|||||||
import re
|
import re
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
|
|
||||||
|
from django.conf import settings
|
||||||
from django.db.models.fields.related import RECURSIVE_RELATIONSHIP_CONSTANT
|
from django.db.models.fields.related import RECURSIVE_RELATIONSHIP_CONSTANT
|
||||||
from django.utils.module_loading import import_string
|
from django.utils.module_loading import import_string
|
||||||
from django.conf import settings
|
|
||||||
|
|
||||||
FieldReference = namedtuple("FieldReference", "to through")
|
FieldReference = namedtuple("FieldReference", "to through")
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user