autoformatter

This commit is contained in:
cellarspoon 2021-12-06 10:20:10 +01:00
parent 4d248038c9
commit c0c3ffca8c
No known key found for this signature in database
GPG Key ID: 03789458B3D0C410

15
app.py
View File

@ -5,15 +5,18 @@ from wtforms.validators import DataRequired
app = Flask(__name__)
@app.route("/")
def hello_world():
form = MyForm(meta={'csrf': False})
return render_template('index.html', form=form)
form = MyForm(meta={"csrf": False})
return render_template("index.html", form=form)
class MyForm(FlaskForm):
name = StringField('name', validators=[DataRequired()])
name = StringField("name", validators=[DataRequired()])
@app.route('/submit', methods=['GET', 'POST'])
@app.route("/submit", methods=["GET", "POST"])
def submit():
print ("Success!")
return render_template('index.html')
print("Success!")
return render_template("index.html")