(pythonPath?: string)
| 350 | }; |
| 351 | |
| 352 | static getVersion(pythonPath?: string) { |
| 353 | if (!pythonPath) pythonPath = this.getPythonPath() |
| 354 | return execPromise(pythonPath + " --version"); |
| 355 | } |
| 356 | |
| 357 | static getVersionSync(pythonPath?: string) { |
| 358 | if (!pythonPath) pythonPath = this.getPythonPath() |
nothing calls this directly
no test coverage detected