ci: automatic Python Formatter changes

This commit is contained in:
github-actions[bot] 2025-02-25 13:25:33 +00:00
parent f66b20d1e9
commit e134182974

View file

@ -2,13 +2,15 @@ from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def index():
return render_template("index.jinja", title="Senju", active_page="home")
@app.route("/haiku")
def haiku_page():
return render_template("haiku.jinja", title="Haiku of the Day", active_page="haiku")
return render_template(
"haiku.jinja",
title="Haiku of the Day",
active_page="haiku")