Re-export names from django.core.cache.backend.base (#71)

This commit is contained in:
Ethan Smith
2019-05-19 09:59:14 -07:00
committed by Maxim Kurnikov
parent d7d7e6c66e
commit e634a5d460

View File

@@ -1,7 +1,11 @@
from collections import OrderedDict from collections import OrderedDict
from typing import Any, Callable, Dict, Union from typing import Any, Callable, Dict, Union
from .backends.base import BaseCache as BaseCache from .backends.base import (
BaseCache as BaseCache,
CacheKeyWarning as CacheKeyWarning,
InvalidCacheBackendError as InvalidCacheBackendError,
)
DEFAULT_CACHE_ALIAS: str DEFAULT_CACHE_ALIAS: str