(node)
| 45 | |
| 46 | @staticmethod |
| 47 | def has_undoc_decorator(node): |
| 48 | return any(isinstance(d, ast.Name) and d.id == 'undoc' \ |
| 49 | for d in node.decorator_list) |
| 50 | |
| 51 | def visit_If(self, node): |
| 52 | if isinstance(node.test, ast.Compare) \ |
no outgoing calls
no test coverage detected