_compat.py 248 B

1234567891011
  1. import warnings
  2. class FlaskWTFDeprecationWarning(DeprecationWarning):
  3. pass
  4. warnings.simplefilter("always", FlaskWTFDeprecationWarning)
  5. warnings.filterwarnings(
  6. "ignore", category=FlaskWTFDeprecationWarning, module="wtforms|flask_wtf"
  7. )