(self, end_str, indent)
| 223 | return start_str |
| 224 | |
| 225 | def _format_block_end(self, end_str, indent): |
| 226 | if self._expand: |
| 227 | return f"\n{' ' * indent}{end_str}" |
| 228 | return end_str |
| 229 | |
| 230 | def _child_indent(self, indent, prefix_len): |
| 231 | if self._expand: |
no outgoing calls
no test coverage detected