From c8c5325a4f6fdb6df736a4b4c2cceb266e74e493 Mon Sep 17 00:00:00 2001 From: Shane Jaroch Date: Tue, 12 Dec 2023 13:04:28 -0500 Subject: [PATCH] no f-strings, always remember for this project! --- ntclient/argparser/funcs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntclient/argparser/funcs.py b/ntclient/argparser/funcs.py index 80291c4..fb4e753 100644 --- a/ntclient/argparser/funcs.py +++ b/ntclient/argparser/funcs.py @@ -142,7 +142,7 @@ def calc_1rm(args: argparse.Namespace) -> tuple: # Print the n=1 average for all three calculations _avg_1rm = round(sum(_all[0][1:]) / len(_all[0][1:]), 1) - print(f"1RM: {_avg_1rm}") + print("1RM: %s" % _avg_1rm) print() _table = tabulate(_all, headers=["n", "epl", "brz", "rmds"]) -- 2.52.0