(text, width=100)
| 705 | print_tree(node['nodes'], indent + 1) |
| 706 | |
| 707 | def print_wrapped(text, width=100): |
| 708 | for line in text.splitlines(): |
| 709 | print(textwrap.fill(line, width=width)) |
| 710 |
nothing calls this directly
no outgoing calls
no test coverage detected