From 06731bcc53cff75fc83d851f1cc0c61ba6155b61 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Sat, 22 Feb 2020 21:24:10 +0100 Subject: plot: Fix format string --- lulua/plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lulua/plot.py b/lulua/plot.py index 2d28347..de95892 100644 --- a/lulua/plot.py +++ b/lulua/plot.py @@ -144,7 +144,7 @@ def triadfreq (args): topTriadsWeight += data['weight'] logging.info (f'{len (topTriads)}/{len (stats["triads"].triads)} triads ' - 'contribute to {args.cutoff*100}% of the typing') + f'contribute to {args.cutoff*100}% of the typing') # final output sortByEffort = sorted (iter (topTriads), key=sorter[args.sort], reverse=args.reverse) -- cgit v1.2.3