CachedResponse __init__ has no return value, should be None If you use it in a codebase that uses mypy, mypy will complain `Call to untyped function "CachedResponse" in typed context` ## To replicate: Install mypy, I have 1.16.0 Test file: ```python from flask_caching import CachedResponse a = CachedResponse("hi", 10) ``` Run `mypy file.py` which will give ```❯ mypy test.py test.py:3: error: Call to untyped function "CachedResponse" in typed context [no-untyped-call] Found 1 error in 1 file (checked 1 source file) ``` ## Environment: - Python version: 3.13 - Flask-Caching version: 2.3.1