From 625b8361b37635f6be970f0706d6f49c6f57e8db Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Wed, 15 Jun 2022 14:29:02 +0200 Subject: UTI: Add comments and clean the code. Change-Id: I6fba9aac20ed22c2ae1450161edc8c11ffa1e24d Signed-off-by: Tibor Frank --- resources/tools/dash/app/pal/routes.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'resources/tools/dash/app/pal/routes.py') diff --git a/resources/tools/dash/app/pal/routes.py b/resources/tools/dash/app/pal/routes.py index 63bbb304f0..d4cd88ffce 100644 --- a/resources/tools/dash/app/pal/routes.py +++ b/resources/tools/dash/app/pal/routes.py @@ -18,13 +18,13 @@ from flask import current_app as app from flask import render_template -@app.route(u"/") +@app.route("/") def home(): """Landing page. """ return render_template( - u"index_layout.jinja2", - title=u"FD.io CSIT", - description=u"Performance Dashboard", - template=u"d-flex h-100 text-center text-white bg-dark" + "index_layout.jinja2", + title="FD.io CSIT", + description="Performance Dashboard", + template="d-flex h-100 text-center text-white bg-dark" ) -- cgit 1.2.3-korg