(self, path: str, language: str)
| 117 | verbose = False |
| 118 | |
| 119 | def __init__(self, path: str, language: str): |
| 120 | super().__init__() |
| 121 | self.path = path |
| 122 | self.lsptoolkit = LSPToolKit(path, language) |
| 123 | |
| 124 | def _run(self, word: str, relative_path: str, line: int = None, verbose: bool = True): |
| 125 | """ |
nothing calls this directly
no test coverage detected