Skip to content

Commit 477c6e6

Browse files
authored
pylsp: Update mypy plugin name (#21031)
Follow-up to #21025 Release Notes: - N/A
1 parent 6c47074 commit 477c6e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/languages/src/python.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ impl LspAdapter for PyLspAdapter {
919919
"plugins": {
920920
"pycodestyle": {"enabled": false},
921921
"rope_autoimport": {"enabled": true, "memory": true},
922-
"mypy": {"enabled": false}
922+
"pylsp_mypy": {"enabled": false}
923923
},
924924
"rope": {
925925
"ropeFolder": null
@@ -947,7 +947,7 @@ impl LspAdapter for PyLspAdapter {
947947
.or_insert_with(|| Value::String(toolchain.path.clone().into()));
948948
}
949949
if let Some(pylint) = python
950-
.entry("mypy")
950+
.entry("pylsp_mypy")
951951
.or_insert(Value::Object(serde_json::Map::default()))
952952
.as_object_mut()
953953
{

0 commit comments

Comments
 (0)