(self)
| 6 | class CherryTree(Report): |
| 7 | |
| 8 | def __init__(self): |
| 9 | super().__init__() |
| 10 | self.name = 'CherryTree' |
| 11 | self.tags = [] |
| 12 | |
| 13 | async def run(self, targets): |
| 14 | if len(targets) > 1: |
nothing calls this directly
no outgoing calls
no test coverage detected