From f9a0472f859b1adf7e1d7e41adccdbdd716f19ce Mon Sep 17 00:00:00 2001 From: Stefan Harmuth Date: Tue, 8 Dec 2020 06:24:27 +0100 Subject: [PATCH] this is not an f-string anymore --- aoclib/output.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aoclib/output.py b/aoclib/output.py index 8f0ea99..9f7363a 100644 --- a/aoclib/output.py +++ b/aoclib/output.py @@ -2,4 +2,4 @@ def printSolution(day, part, solution, test=False): if test: print("(TEST) ", end="") - print(f"Solution to day %s, part %s: %s" % (day, part, solution)) + print("Solution to day %s, part %s: %s" % (day, part, solution))