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