diff --git a/src/coverup/coverup.py b/src/coverup/coverup.py index 5759545..b4ccbac 100644 --- a/src/coverup/coverup.py +++ b/src/coverup/coverup.py @@ -340,7 +340,7 @@ def __init__(self, total, initial): self._bar = tqdm.tqdm(total=total, initial=initial) self._postfix = OrderedDict() - for p in ['usage', *PROGRESS_COUNTERS]: + for p in [*PROGRESS_COUNTERS, 'cost']: self._postfix[p] = '' # to establish order self._bar.set_postfix(ordered_dict=self._postfix)