(self, max_cves: int = 5, max_github: int = 3)
| 17 | |
| 18 | def __init__(self, max_cves: int = 5, max_github: int = 3): |
| 19 | self.max_cves = max_cves |
| 20 | self.max_github = max_github |
| 21 | |
| 22 | async def search( |
| 23 | self, |
| 24 | product: str, |
nothing calls this directly
no outgoing calls
no test coverage detected