7 lines
145 B
Python
7 lines
145 B
Python
import warnings
|
|
|
|
from . import MRUCache
|
|
|
|
warnings.warn(
|
|
"cachetools.mru is deprecated, please use cachetools.MRUCache", DeprecationWarning
|
|
)
|