Prints tree to console as JSON
(self)
| 101 | return json.dumps(json.loads(json_data), indent=2) |
| 102 | |
| 103 | def showJSON(self) -> None: |
| 104 | """ |
| 105 | Prints tree to console as JSON |
| 106 | """ |
| 107 | print(self._to_json()) |
| 108 | |
| 109 | def showTable(self) -> None: |
| 110 | """ |