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