Update forms.py

FlaskWTFDeprecationWarning: "flask_wtf.Form" has been renamed to "FlaskForm" and will be removed in 1.0.
This commit is contained in:
Xiaolong 2016-12-21 15:30:03 +08:00 committed by GitHub
parent dd4a0375c2
commit ee6a7e914a
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
from flask_wtf import Form
from flask_wtf import FlaskForm
from flask_babel import gettext
from wtforms import StringField, BooleanField, TextAreaField
from wtforms.validators import DataRequired, Length