MCPcopy Create free account
hub / github.com/astanin/python-tabulate / _append_basic_row

Function _append_basic_row

tabulate/__init__.py:2582–2585  ·  view source on GitHub ↗
(lines, padded_cells, colwidths, colaligns, rowfmt, rowalign=None)

Source from the content-addressed store, hash-verified

2580
2581
2582def _append_basic_row(lines, padded_cells, colwidths, colaligns, rowfmt, rowalign=None):
2583 # NOTE: rowalign is ignored and exists for api compatibility with _append_multiline_row
2584 lines.append(_build_row(padded_cells, colwidths, colaligns, rowfmt))
2585 return lines
2586
2587
2588def _align_cell_veritically(text_lines, num_lines, column_width, row_alignment):

Callers 1

_append_multiline_rowFunction · 0.85

Calls 1

_build_rowFunction · 0.85

Tested by

no test coverage detected