7 lines
141 B
Python
7 lines
141 B
Python
import warnings
|
|
|
|
from . import Cache
|
|
|
|
warnings.warn(
|
|
"cachetools.cache is deprecated, please use cachetools.Cache", DeprecationWarning
|
|
)
|