diff --git a/cof/settings/bds_prod.py b/cof/settings/bds_prod.py index 65245ad2..abd43ca9 100644 --- a/cof/settings/bds_prod.py +++ b/cof/settings/bds_prod.py @@ -4,9 +4,8 @@ The settings that are not listed here are imported from .common """ import os -from .common import BASE_DIR, INSTALLED_APPS - from .common import * # NOQA +from .common import BASE_DIR, INSTALLED_APPS # --- # BDS-only Django settings diff --git a/cof/settings/cof_prod.py b/cof/settings/cof_prod.py index 4bca38d2..180e92a6 100644 --- a/cof/settings/cof_prod.py +++ b/cof/settings/cof_prod.py @@ -4,6 +4,7 @@ The settings that are not listed here are imported from .common """ import os +from .common import * # NOQA from .common import ( AUTHENTICATION_BACKENDS, BASE_DIR, @@ -13,8 +14,6 @@ from .common import ( import_secret, ) -from .common import * # NOQA - # --- # COF-specific secrets # --- diff --git a/cof/settings/local.py b/cof/settings/local.py index ee9fc407..c34ffd76 100644 --- a/cof/settings/local.py +++ b/cof/settings/local.py @@ -2,9 +2,8 @@ import os from . import bds_prod -from .cof_prod import BASE_DIR, INSTALLED_APPS, MIDDLEWARE, TESTING - from .cof_prod import * # NOQA +from .cof_prod import BASE_DIR, INSTALLED_APPS, MIDDLEWARE, TESTING # --- # Merge COF and BDS configs