Update forms.py
FlaskWTFDeprecationWarning: "flask_wtf.Form" has been renamed to "FlaskForm" and will be removed in 1.0.
This commit is contained in:
		
							parent
							
								
									dd4a0375c2
								
							
						
					
					
						commit
						ee6a7e914a
					
				| 
						 | 
					@ -1,4 +1,4 @@
 | 
				
			||||||
from flask_wtf import Form
 | 
					from flask_wtf import FlaskForm
 | 
				
			||||||
from flask_babel import gettext
 | 
					from flask_babel import gettext
 | 
				
			||||||
from wtforms import StringField, BooleanField, TextAreaField
 | 
					from wtforms import StringField, BooleanField, TextAreaField
 | 
				
			||||||
from wtforms.validators import DataRequired, Length
 | 
					from wtforms.validators import DataRequired, Length
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue