forked from DGNum/gestioCOF
Make isort happy…
This commit is contained in:
parent
e7517195cd
commit
7caee5665b
3 changed files with 3 additions and 6 deletions
|
@ -4,9 +4,8 @@ The settings that are not listed here are imported from .common
|
||||||
"""
|
"""
|
||||||
import os
|
import os
|
||||||
|
|
||||||
from .common import BASE_DIR, INSTALLED_APPS
|
|
||||||
|
|
||||||
from .common import * # NOQA
|
from .common import * # NOQA
|
||||||
|
from .common import BASE_DIR, INSTALLED_APPS
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# BDS-only Django settings
|
# BDS-only Django settings
|
||||||
|
|
|
@ -4,6 +4,7 @@ The settings that are not listed here are imported from .common
|
||||||
"""
|
"""
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
from .common import * # NOQA
|
||||||
from .common import (
|
from .common import (
|
||||||
AUTHENTICATION_BACKENDS,
|
AUTHENTICATION_BACKENDS,
|
||||||
BASE_DIR,
|
BASE_DIR,
|
||||||
|
@ -13,8 +14,6 @@ from .common import (
|
||||||
import_secret,
|
import_secret,
|
||||||
)
|
)
|
||||||
|
|
||||||
from .common import * # NOQA
|
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# COF-specific secrets
|
# COF-specific secrets
|
||||||
# ---
|
# ---
|
||||||
|
|
|
@ -2,9 +2,8 @@
|
||||||
import os
|
import os
|
||||||
|
|
||||||
from . import bds_prod
|
from . import bds_prod
|
||||||
from .cof_prod import BASE_DIR, INSTALLED_APPS, MIDDLEWARE, TESTING
|
|
||||||
|
|
||||||
from .cof_prod import * # NOQA
|
from .cof_prod import * # NOQA
|
||||||
|
from .cof_prod import BASE_DIR, INSTALLED_APPS, MIDDLEWARE, TESTING
|
||||||
|
|
||||||
# ---
|
# ---
|
||||||
# Merge COF and BDS configs
|
# Merge COF and BDS configs
|
||||||
|
|
Loading…
Add table
Reference in a new issue