mirror of
https://github.com/Xevion/v1.xevion.dev.git
synced 2025-12-14 22:13:28 -06:00
PyCharm grand repo wide reformat with black formatter
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user