We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e29121 commit 902102bCopy full SHA for 902102b
lib/main.js
@@ -50,7 +50,8 @@ class PythonLanguageClient extends AutoLanguageClient {
50
let pyls = atom.config.get("ide-python.pyls") || "pylsp"
51
// check if it exists
52
if (whichSync(pyls, { nothrow: true }) === null) {
53
- pyls = "pyls"
+ // use the other one if it doesn't exist
54
+ pyls = pyls === "pylsp" ? "pyls" : "pylsp"
55
}
56
// cache
57
this.pyls = pyls
0 commit comments