diff options
| author | Scott <[email protected]> | 2022-01-26 21:35:20 -0800 |
|---|---|---|
| committer | Scott <[email protected]> | 2022-01-26 21:35:20 -0800 |
| commit | e6f32fdd9b373dfcd100c7accb41f57d83c2f0a1 (patch) | |
| tree | eea4985bc43238fbd070c783441f08988f581973 /histogram.py | |
| parent | 36fea7f15ed17150691b5b3ead75450e575229ef (diff) | |
Ahem. Still running black?
Diffstat (limited to 'histogram.py')
| -rw-r--r-- | histogram.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/histogram.py b/histogram.py index 4aa4749..a899fe9 100644 --- a/histogram.py +++ b/histogram.py @@ -94,11 +94,7 @@ class SimpleHistogram(Generic[T]): right_end="", ) label = f'{label_formatter}..{label_formatter}' % (start, end) - txt += ( - f'{label:20}: ' - + bar - + f"({pop/self.count*100.0:5.2f}% n={pop})\n" - ) + txt += f'{label:20}: ' + bar + f"({pop/self.count*100.0:5.2f}% n={pop})\n" if start == last_bucket_start: break return txt |
