Make isort happy…

This commit is contained in:
Martin Pépin 2020-07-10 22:53:44 +02:00
parent e7517195cd
commit 7caee5665b
No known key found for this signature in database
GPG key ID: E7520278B1774448
3 changed files with 3 additions and 6 deletions

View file

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

View file

@ -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
# --- # ---

View file

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