1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-08-21 16:47:22 +02:00

More linting

This commit is contained in:
Yohann D'ANELLO
2020-11-03 18:16:36 +01:00
parent c35fb4e996
commit fa368a399a
6 changed files with 19 additions and 18 deletions

View File

@@ -89,8 +89,7 @@ LOGIN_REDIRECT_URL = "index"
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'corres2math/templates')]
,
'DIRS': [os.path.join(BASE_DIR, 'corres2math/templates')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
@@ -216,6 +215,6 @@ else:
}
if os.getenv("CORRES2MATH_STAGE", "dev") == "prod":
from .settings_prod import *
from .settings_prod import * # noqa: F401,F403
else:
from .settings_dev import *
from .settings_dev import * # noqa: F401,F403