(self, start_str, indent)
| 218 | stream.write(rep) |
| 219 | |
| 220 | def _format_block_start(self, start_str, indent): |
| 221 | if self._expand: |
| 222 | return f"{start_str}\n{' ' * indent}" |
| 223 | return start_str |
| 224 | |
| 225 | def _format_block_end(self, end_str, indent): |
| 226 | if self._expand: |
no outgoing calls
no test coverage detected