Skip to content

Commit 2ed7787

Browse files
committed
I blue it
1 parent b7ecbe9 commit 2ed7787

22 files changed

+787
-501
lines changed

diskcache/__init__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@
77
"""
88

99
from .core import (
10-
Cache, Disk, EmptyDirWarning, JSONDisk, UnknownFileWarning, Timeout
10+
Cache,
11+
Disk,
12+
EmptyDirWarning,
13+
JSONDisk,
14+
UnknownFileWarning,
15+
Timeout,
1116
)
1217
from .core import DEFAULT_SETTINGS, ENOVAL, EVICTION_POLICY, UNKNOWN
1318
from .fanout import FanoutCache
@@ -40,6 +45,7 @@
4045

4146
try:
4247
from .djangocache import DjangoCache # noqa
48+
4349
__all__.append('DjangoCache')
4450
except Exception: # pylint: disable=broad-except
4551
# Django not installed or not setup so ignore.

0 commit comments

Comments
 (0)