Files
Buffteks-Dev-Server/buffteks/lib/python3.11/site-packages/flask_wtf/_compat.py
2025-12-02 14:32:10 +00: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"
)