From d69fffeb3376decd5b7e40c6fdba9f395cddba4d Mon Sep 17 00:00:00 2001 From: rachmadaniHaryono Date: Tue, 3 Apr 2018 18:07:22 +0800 Subject: [PATCH] chg: dev: remove unused EditBookmarksForm --- bukuserver/forms.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/bukuserver/forms.py b/bukuserver/forms.py index be2902a..5c8b45e 100644 --- a/bukuserver/forms.py +++ b/bukuserver/forms.py @@ -1,7 +1,7 @@ """Forms module.""" # pylint: disable=too-few-public-methods, missing-docstring from flask_wtf import FlaskForm -from wtforms import StringField, FieldList, BooleanField, validators, HiddenField +from wtforms import StringField, FieldList, BooleanField, validators class SearchBookmarksForm(FlaskForm): @@ -16,7 +16,3 @@ class CreateBookmarksForm(FlaskForm): title = StringField() tags = StringField() description = StringField() - - -class EditBookmarksForm(CreateBookmarksForm): - bookmark_id = HiddenField(validators=[validators.required()])