summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2020-02-22 21:24:10 +0100
committerLars-Dominik Braun <lars@6xq.net>2020-02-22 21:24:10 +0100
commit06731bcc53cff75fc83d851f1cc0c61ba6155b61 (patch)
tree60732b053802e221599e21d0050d2b23ec8b3392
parent0f8643954fd9507aec85bab46046e71a497bfffe (diff)
downloadlulua-06731bcc53cff75fc83d851f1cc0c61ba6155b61.tar.gz
lulua-06731bcc53cff75fc83d851f1cc0c61ba6155b61.tar.bz2
lulua-06731bcc53cff75fc83d851f1cc0c61ba6155b61.zip
plot: Fix format string
-rw-r--r--lulua/plot.py2
1 files changed, 1 insertions, 1 deletions
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)