1
0
forked from s434650/CatOrNot
CatOrNot/venv/lib/python3.6/site-packages/flask_wtf/html5.py
2018-12-11 00:32:28 +01:00

14 lines
372 B
Python

# coding: utf-8
# flake8: noqa
import warnings
from flask_wtf._compat import FlaskWTFDeprecationWarning
warnings.warn(FlaskWTFDeprecationWarning(
'"flask_wtf.html5" will be removed in 1.0. '
'Import directly from "wtforms.fields.html5" '
'and "wtforms.widgets.html5".'
), stacklevel=2)
from wtforms.widgets.html5 import *
from wtforms.fields.html5 import *