(self)
| 265 | return self._auto_reformat |
| 266 | |
| 267 | def _calculate_max_width(self): |
| 268 | max_width = max( |
| 269 | s.total_width( |
| 270 | padding=4, with_border=True, outer_padding=s.indent_level |
| 271 | ) |
| 272 | for s in self._sections |
| 273 | ) |
| 274 | return max_width |
| 275 | |
| 276 | def _render_section(self, section, max_width, stream): |
| 277 | stream = IndentedStream( |