aboutsummaryrefslogtreecommitdiffstats
path: root/python/werkzeug/contrib/lint.py
blob: 8bd8b8ab2799749a89bb6344c28d7f8df6d7df16 (plain)
1
2
3
4
5
6
7
8
9
10
11
import warnings

from ..middleware.lint import *  # noqa: F401, F403

warnings.warn(
    "'werkzeug.contrib.lint' has moved to 'werkzeug.middleware.lint'."
    " This import is deprecated as of version 0.15 and will be removed"
    " in version 1.0.",
    DeprecationWarning,
    stacklevel=2,
)