(tree)
| 98 | return ele_list |
| 99 | |
| 100 | def get_tree_height(tree): |
| 101 | if not tree['children']: |
| 102 | return 1 |
| 103 | max_height = 0 |
| 104 | for child in tree['children']: |
| 105 | max_height = max(max_height, get_tree_height(child)) |
| 106 | return max_height + 1 |
| 107 | |
| 108 | def judge_invalid_elements(ele): |
| 109 | ref_group_name = ele['ref_group_name'] |
nothing calls this directly
no outgoing calls
no test coverage detected