(node, color=True, noanno=False)
| 127 | |
| 128 | |
| 129 | def fmt(node, color=True, noanno=False): |
| 130 | printer = PrettyPrinter(color, noanno) |
| 131 | if isinstance(node, (list, tuple)): |
| 132 | for n in node: |
| 133 | printer.visit(n) |
| 134 | else: |
| 135 | printer.visit(node) |
| 136 | return printer.result |
nothing calls this directly
no test coverage detected