From e134182974c7f42c41826ff1e6e14e7e10d9621c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 25 Feb 2025 13:25:33 +0000 Subject: [PATCH] ci: automatic Python Formatter changes --- senju/main.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/senju/main.py b/senju/main.py index 486261b..02a1900 100644 --- a/senju/main.py +++ b/senju/main.py @@ -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")