diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2020-02-22 21:24:10 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2020-02-22 21:24:10 +0100 |
commit | 06731bcc53cff75fc83d851f1cc0c61ba6155b61 (patch) | |
tree | 60732b053802e221599e21d0050d2b23ec8b3392 /lulua | |
parent | 0f8643954fd9507aec85bab46046e71a497bfffe (diff) | |
download | lulua-06731bcc53cff75fc83d851f1cc0c61ba6155b61.tar.gz lulua-06731bcc53cff75fc83d851f1cc0c61ba6155b61.tar.bz2 lulua-06731bcc53cff75fc83d851f1cc0c61ba6155b61.zip |
plot: Fix format string
Diffstat (limited to 'lulua')
-rw-r--r-- | lulua/plot.py | 2 |
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) |