(self)
| 13 | |
| 14 | def __init__(self): |
| 15 | self.logger = get_logger("exploit.searchsploit") |
| 16 | self.searchsploit_available = shutil.which("searchsploit") is not None |
| 17 | |
| 18 | async def search( |
| 19 | self, |
| 20 | query: str, |
nothing calls this directly
no test coverage detected