(self, max_width)
| 259 | self._render_section(section, max_width, stream) |
| 260 | |
| 261 | def _determine_conversion_needed(self, max_width): |
| 262 | # If we don't know the width of the controlling terminal, |
| 263 | # then we don't try to resize the table. |
| 264 | if max_width > self._terminal_width: |
| 265 | return self._auto_reformat |
| 266 | |
| 267 | def _calculate_max_width(self): |
| 268 | max_width = max( |