We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c47074 commit 477c6e6Copy full SHA for 477c6e6
crates/languages/src/python.rs
@@ -919,7 +919,7 @@ impl LspAdapter for PyLspAdapter {
919
"plugins": {
920
"pycodestyle": {"enabled": false},
921
"rope_autoimport": {"enabled": true, "memory": true},
922
- "mypy": {"enabled": false}
+ "pylsp_mypy": {"enabled": false}
923
},
924
"rope": {
925
"ropeFolder": null
@@ -947,7 +947,7 @@ impl LspAdapter for PyLspAdapter {
947
.or_insert_with(|| Value::String(toolchain.path.clone().into()));
948
}
949
if let Some(pylint) = python
950
- .entry("mypy")
+ .entry("pylsp_mypy")
951
.or_insert(Value::Object(serde_json::Map::default()))
952
.as_object_mut()
953
{
0 commit comments