(self, section, max_width, stream)
| 274 | return max_width |
| 275 | |
| 276 | def _render_section(self, section, max_width, stream): |
| 277 | stream = IndentedStream( |
| 278 | stream, |
| 279 | section.indent_level, |
| 280 | self._styler.style_indentation_char('|'), |
| 281 | self._styler.style_indentation_char('|'), |
| 282 | ) |
| 283 | max_width -= section.indent_level * 2 |
| 284 | self._render_title(section, max_width, stream) |
| 285 | self._render_column_titles(section, max_width, stream) |
| 286 | self._render_rows(section, max_width, stream) |
| 287 | |
| 288 | def _render_title(self, section, max_width, stream): |
| 289 | # The title consists of: |
no test coverage detected