Format a single row from format_times.
(times, indent=0, separator=", ", row_end=",\n")
| 179 | |
| 180 | |
| 181 | def format_row(times, indent=0, separator=", ", row_end=",\n"): |
| 182 | """Format a single row from format_times.""" |
| 183 | return indent * " " + separator.join(map(str, times)) + row_end |
| 184 | |
| 185 | |
| 186 | def format_times( |
no test coverage detected
searching dependent graphs…