tokencrawler/.venv/lib/python3.9/site-packages/cachetools/lru.py
2022-03-17 22:16:30 +01:00

7 lines
145 B
Python

import warnings
from . import LRUCache
warnings.warn(
"cachetools.lru is deprecated, please use cachetools.LRUCache", DeprecationWarning
)