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

7 lines
148 B
Python

import warnings
from . import FIFOCache
warnings.warn(
"cachetools.fifo is deprecated, please use cachetools.FIFOCache", DeprecationWarning
)