(node)
| 26 | |
| 27 | @staticmethod |
| 28 | def get_class_list(node): |
| 29 | res = get_node_by_kind(node, ['class', 'module']) |
| 30 | |
| 31 | # remove class keywords |
| 32 | for node in res[:]: |
| 33 | if not node.children: |
| 34 | res.remove(node) |
| 35 | |
| 36 | return res |
| 37 | |
| 38 | @staticmethod |
| 39 | def get_docstring_node(node) -> str: |
nothing calls this directly
no test coverage detected