Print a single row of the table with fixed formatting.
(outfile, feature, line)
| 244 | |
| 245 | |
| 246 | def print_table_row(outfile, feature, line): |
| 247 | """ Print a single row of the table with fixed formatting. """ |
| 248 | line = line.rstrip() |
| 249 | print(' {:<{}}{}'.format(feature, feature_str_len, line), file=outfile) |
| 250 | |
| 251 | |
| 252 | def print_table_divider(outfile, num_cols): |
no test coverage detected