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