Files
website/venv/lib/python3.11/site-packages/flask_wtf/_compat.py
2025-04-27 21:22:28 +01:00

12 lines
248 B
Python

import warnings
class FlaskWTFDeprecationWarning(DeprecationWarning):
pass
warnings.simplefilter("always", FlaskWTFDeprecationWarning)
warnings.filterwarnings(
"ignore", category=FlaskWTFDeprecationWarning, module="wtforms|flask_wtf"
)