forked from DGNum/gestioCOF
Update the isort config for version 5.*
This commit is contained in:
parent
c7ca96bce5
commit
e9f00b4f06
9 changed files with 14 additions and 13 deletions
|
@ -2,12 +2,12 @@
|
|||
Django development settings for the cof project.
|
||||
The settings that are not listed here are imported from .common
|
||||
"""
|
||||
|
||||
import os
|
||||
|
||||
from .common import * # NOQA
|
||||
from .common import BASE_DIR, INSTALLED_APPS
|
||||
|
||||
from .common import * # NOQA
|
||||
|
||||
# ---
|
||||
# BDS-only Django settings
|
||||
# ---
|
||||
|
|
|
@ -2,10 +2,8 @@
|
|||
Django development settings for the cof project.
|
||||
The settings that are not listed here are imported from .common
|
||||
"""
|
||||
|
||||
import os
|
||||
|
||||
from .common import * # NOQA
|
||||
from .common import (
|
||||
AUTHENTICATION_BACKENDS,
|
||||
BASE_DIR,
|
||||
|
@ -15,6 +13,8 @@ from .common import (
|
|||
import_secret,
|
||||
)
|
||||
|
||||
from .common import * # NOQA
|
||||
|
||||
# ---
|
||||
# COF-specific secrets
|
||||
# ---
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
"""Django local development settings."""
|
||||
|
||||
import os
|
||||
|
||||
from . import bds_prod
|
||||
from .cof_prod import * # NOQA
|
||||
from .cof_prod import BASE_DIR, INSTALLED_APPS, MIDDLEWARE, TESTING
|
||||
|
||||
from .cof_prod import * # NOQA
|
||||
|
||||
# ---
|
||||
# Merge COF and BDS configs
|
||||
# ---
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue