Skip to content

Commit

Permalink
pylsp: Update mypy plugin name (#21031)
Browse files Browse the repository at this point in the history
Follow-up to #21025

Release Notes:

- N/A
  • Loading branch information
osiewicz authored Nov 22, 2024
1 parent 6c47074 commit 477c6e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/languages/src/python.rs
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,7 @@ impl LspAdapter for PyLspAdapter {
"plugins": {
"pycodestyle": {"enabled": false},
"rope_autoimport": {"enabled": true, "memory": true},
"mypy": {"enabled": false}
"pylsp_mypy": {"enabled": false}
},
"rope": {
"ropeFolder": null
Expand Down Expand Up @@ -947,7 +947,7 @@ impl LspAdapter for PyLspAdapter {
.or_insert_with(|| Value::String(toolchain.path.clone().into()));
}
if let Some(pylint) = python
.entry("mypy")
.entry("pylsp_mypy")
.or_insert(Value::Object(serde_json::Map::default()))
.as_object_mut()
{
Expand Down

0 comments on commit 477c6e6

Please sign in to comment.