(self, node: dict[str, Any], depth: int, lines: list[str])
| 1420 | return "\n".join(lines) |
| 1421 | |
| 1422 | def _render_stack_tree_text(self, node: dict[str, Any], depth: int, lines: list[str]) -> None: |
| 1423 | for child in node.get("children", []): |
| 1424 | lines.append(f"{' ' * depth}- {_stack_node_name(child)} {_format_stack_summary(child)}") |
| 1425 | self._render_stack_tree_text(child, depth + 1, lines) |
| 1426 | |
| 1427 | def _compatibility_json_data(self) -> dict[str, Any]: |
| 1428 | result: dict[str, Any] = {} |
no test coverage detected