(val, w, color="")
| 73 | ) |
| 74 | |
| 75 | def fmt(val, w, color=""): |
| 76 | s = str(val).center(w) |
| 77 | return (" " + color + s + util.ENDC + " ") if color else (" " + s + " ") |
| 78 | |
| 79 | def header_row(): |
| 80 | cells = [fmt(k, col_w[k]) for k in col_keys] |
nothing calls this directly
no outgoing calls
no test coverage detected