Skip to content

Commit 3b5ab7c

Browse files
committed
Reformatted
1 parent 4cb0111 commit 3b5ab7c

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

website/settings/dev.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
from __future__ import annotations
22

33
from .base import * # noqa
4-
from .base import BASE_DIR
5-
from .base import INSTALLED_APPS
6-
from .base import MIDDLEWARE
4+
from .base import BASE_DIR, INSTALLED_APPS, MIDDLEWARE
75

86
# SECURITY WARNING: don't run with debug turned on in production!
97
DEBUG = True
@@ -36,15 +34,12 @@
3634

3735
CACHES = {
3836
"default": {
39-
# "BACKEND": "django.core.cache.backends.filebased.FileBasedCache",
4037
"BACKEND": "django.core.cache.backends.dummy.DummyCache",
4138
"LOCATION": BASE_DIR / "cache",
4239
},
4340
"renditions": {
4441
"BACKEND": "django.core.cache.backends.filebased.FileBasedCache",
4542
"LOCATION": BASE_DIR / "image_renditions",
46-
# "TIMEOUT": 600,
47-
# "OPTIONS": {"MAX_ENTRIES": 1000},
4843
},
4944
}
5045

0 commit comments

Comments
 (0)