(self, path: str, language: str)
| 161 | language = "python" |
| 162 | |
| 163 | def __init__(self, path: str, language: str): |
| 164 | super().__init__() |
| 165 | self.path = path |
| 166 | self.lsptoolkit = LSPToolKit(path, language) |
| 167 | |
| 168 | def _run(self, word: str, relative_file_path: str, line: Optional[int] = None, num_results: int = 10): |
| 169 | """ |
nothing calls this directly
no test coverage detected