PyCharm grand repo wide reformat with black formatter

This commit is contained in:
Xevion
2020-03-08 20:49:06 -05:00
parent 66c2ff228c
commit bc3cd82a95
16 changed files with 487 additions and 341 deletions

View File

@@ -3,25 +3,25 @@ import flask
from app import app
@app.route('/ftbhot/about')
@app.route('/ftbhot/about/')
@app.route("/ftbhot/about")
@app.route("/ftbhot/about/")
def ftbhot_about():
return flask.render_template('/ftbhot/about.html')
return flask.render_template("/ftbhot/about.html")
@app.route('/ftbhot/auth')
@app.route('/ftbhot/auth/')
@app.route("/ftbhot/auth")
@app.route("/ftbhot/auth/")
def ftbhot_auth():
return 'WIP'
return "WIP"
@app.route('/ftbhot')
@app.route('/ftbhot/')
@app.route("/ftbhot")
@app.route("/ftbhot/")
def ftbhot():
return flask.render_template('/ftbhot/embed.html')
return flask.render_template("/ftbhot/embed.html")
@app.route('/ftbhot/json')
@app.route('/ftbhot/json/')
@app.route("/ftbhot/json")
@app.route("/ftbhot/json/")
def ftbhot_embed():
return flask.render_template('/ftbhot/current.json')
return flask.render_template("/ftbhot/current.json")