Reformat with black

https://github.com/python/black
This commit is contained in:
David Baumgold 2019-05-06 15:39:41 -04:00
parent 5b309831ec
commit 025589ee76
63 changed files with 3784 additions and 3459 deletions

View file

@ -1,13 +1,13 @@
from flask import Blueprint, render_template
frontend = Blueprint('frontend', __name__, template_folder='templates')
frontend = Blueprint("frontend", __name__, template_folder="templates")
@frontend.route('/')
@frontend.route("/")
def index():
return render_template('frontend/index.html')
return render_template("frontend/index.html")
@frontend.route('/missing')
@frontend.route("/missing")
def missing_template():
return render_template('missing_template.html')
return render_template("missing_template.html")