X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=histogram.py;h=3391b0b3c51d33164b6d173d59a7b4a1b3c9788b;hb=b10d30a46e601c9ee1f843241f2d69a1f90f7a94;hp=0368376434c3579014cf97974e3e6e381f494872;hpb=4faa994d32223c8d560d9dad0ca90a3f7eb10d6a;p=python_utils.git diff --git a/histogram.py b/histogram.py index 0368376..3391b0b 100644 --- a/histogram.py +++ b/histogram.py @@ -69,13 +69,15 @@ class SimpleHistogram(Generic[T]): def __repr__(self, label_formatter='%10s') -> str: from text_utils import bar_graph + max_population: Optional[int] = None for bucket in self.buckets: pop = self.buckets[bucket] if pop > 0: - last_bucket_start = bucket[0] + last_bucket_start = bucket[0] # beginning of range if max_population is None or pop > max_population: - max_population = pop + max_population = pop # bucket with max items + txt = "" if max_population is None: return txt