(cls, row_count: int, col_count: int, col_width: Length)
| 242 | |
| 243 | @classmethod |
| 244 | def _trs_xml(cls, row_count: int, col_count: int, col_width: Length) -> str: |
| 245 | return f" <w:tr>\n{cls._tcs_xml(col_count, col_width)} </w:tr>\n" * row_count |
| 246 | |
| 247 | @classmethod |
| 248 | def _tcs_xml(cls, col_count: int, col_width: Length) -> str: |