From 7caee5665bb99306889d5fc59d61e5d165af29d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20P=C3=A9pin?= Date: Fri, 10 Jul 2020 22:53:44 +0200 Subject: [PATCH] =?UTF-8?q?Make=20isort=20happy=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cof/settings/bds_prod.py | 3 +-- cof/settings/cof_prod.py | 3 +-- cof/settings/local.py | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) 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