From 40e4bf4fbaf90dc68c4af6d7dba73c9f98864c46 Mon Sep 17 00:00:00 2001 From: kindtanton Date: Fri, 6 Dec 2019 12:48:37 +0100 Subject: [PATCH] Changed the way of concatinating strings in app.py --- app/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.py b/app/app.py index 7536c23..44c9aaf 100644 --- a/app/app.py +++ b/app/app.py @@ -156,7 +156,7 @@ def add_template_filters(app: Flask) -> None: minutes, seconds = divmod(remainder, 60) time = "%02d:%02d:%02d" % (hours, minutes, seconds) if show_text: - return time + " left" + return f"{time} left" return time @app.template_filter("year")