• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import warnings
2
3from . import TTLCache
4
5warnings.warn(
6    "cachetools.ttl is deprecated, please use cachetools.TTLCache",
7    DeprecationWarning,
8    stacklevel=2,
9)
10