1
0
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:
Tom Turner 2024-07-11 18:16:02 +01:00
parent a29bd71fca
commit d907279850
2 changed files with 2 additions and 2 deletions

View File

@ -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 = {}

View File

@ -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")