7 lines
189 B
Python
7 lines
189 B
Python
import flask_wtf # type:ignore
|
|
import wtforms # type:ignore
|
|
|
|
|
|
class SearchForm(flask_wtf.FlaskForm):
|
|
q = wtforms.SearchField("search", validators=[wtforms.validators.DataRequired()])
|