diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-09-22 17:41:48 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-09-22 17:41:48 +0530 |
commit | 6b1d1b2ca4319edc820e64e50c2c37734190d524 (patch) | |
tree | 337de47034922083a4ef73745c4c4097cd45933a | |
parent | 21c6e75171a1abce56ddc1da0d2a8fe6a8bda496 (diff) |
fixed common query label
-rw-r--r-- | app/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/forms.py b/app/forms.py index fb2ecf0..4d45a0c 100644 --- a/app/forms.py +++ b/app/forms.py @@ -52,4 +52,4 @@ class generatePDBQTS(FlaskForm): name = StringField('Compound Name (Optional)') class PyMedSearch(FlaskForm): - query = StringField('Search Query for PubMed',default="Query",validators=[DataRequired()])
\ No newline at end of file + query = StringField('Search Query',default="Query",validators=[DataRequired()])
\ No newline at end of file |