uwsgicache.py 455 B

123456789101112131415
  1. import warnings
  2. from flask_caching.contrib.uwsgicache import UWSGICache as _UWSGICache
  3. class UWSGICache(_UWSGICache):
  4. def __init__(self, *args, **kwargs):
  5. warnings.warn(
  6. "Importing UWSGICache from flask_caching.backends is deprecated, "
  7. "use flask_caching.contrib.uwsgicache.UWSGICache instead",
  8. category=DeprecationWarning,
  9. stacklevel=2,
  10. )
  11. super().__init__(*args, **kwargs)