Information regarding a row.
| 130 | |
| 131 | @dataclass |
| 132 | class Row: |
| 133 | """Information regarding a row.""" |
| 134 | |
| 135 | style: Optional[StyleType] = None |
| 136 | """Style to apply to row.""" |
| 137 | |
| 138 | end_section: bool = False |
| 139 | """Indicated end of section, which will force a line beneath the row.""" |
| 140 | |
| 141 | |
| 142 | class _Cell(NamedTuple): |