def _size(*values): """ Print summed size humanized. """ value = sum(values) return humanize.naturalsize(value, binary=True) if value else '-'