:param tree Tree: :param parent Group: :rtype: list[Node]
(tree, parent)
| 119 | @staticmethod |
| 120 | @abc.abstractmethod |
| 121 | def make_nodes(tree, parent): |
| 122 | """ |
| 123 | :param tree Tree: |
| 124 | :param parent Group: |
| 125 | :rtype: list[Node] |
| 126 | """ |
| 127 | |
| 128 | @staticmethod |
| 129 | @abc.abstractmethod |
nothing calls this directly
no outgoing calls
no test coverage detected