Skip to content

Commit

Permalink
fix(settings): ignore isort F405 on imports from base settings
Browse files Browse the repository at this point in the history
  • Loading branch information
engineervix committed Jul 20, 2021
1 parent 76aeb0c commit 6aa9d08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/config/settings/dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [str(APPS_DIR.path("templates"))],
"DIRS": [str(APPS_DIR.path("templates"))], # noqa: F405
# 'APP_DIRS': True, # default setting
"OPTIONS": {
"context_processors": [
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/config/settings/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [str(APPS_DIR.path("templates"))],
"DIRS": [str(APPS_DIR.path("templates"))], # noqa: F405
# 'APP_DIRS': True, # default setting
"OPTIONS": {
"context_processors": [
Expand Down

0 comments on commit 6aa9d08

Please sign in to comment.