mirror of
https://github.com/django/django.git
synced 2024-12-22 17:16:24 +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.
|
||||
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_MODULES = {}
|
||||
|
@ -2,9 +2,9 @@ import datetime
|
||||
import re
|
||||
from collections import namedtuple
|
||||
|
||||
from django.conf import settings
|
||||
from django.db.models.fields.related import RECURSIVE_RELATIONSHIP_CONSTANT
|
||||
from django.utils.module_loading import import_string
|
||||
from django.conf import settings
|
||||
|
||||
FieldReference = namedtuple("FieldReference", "to through")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user