Print the table divider line.
(outfile, num_cols)
| 250 | |
| 251 | |
| 252 | def print_table_divider(outfile, num_cols): |
| 253 | """ Print the table divider line. """ |
| 254 | line = ' ' |
| 255 | column_dividers = ['='] * num_cols |
| 256 | line += ' '.join(column_dividers) |
| 257 | |
| 258 | feature = '=' * feature_str_len |
| 259 | |
| 260 | print_table_row(outfile, feature, line) |
| 261 | |
| 262 | |
| 263 | def print_table_css(outfile, table_id): |
no test coverage detected