docs: Fix typo in Python configuration example (#38434)

Release Notes:

- N/A

---------

Co-authored-by: Marshall Bowers <git@maxdeviant.com>
This commit is contained in:
Jaeyong Sung
2025-09-18 18:46:26 +00:00
committed by GitHub
co-authored by Marshall Bowers
parent 5fccde9b1b
commit 6b8ed5bf28
+5 -3
View File
@@ -81,11 +81,13 @@ These are disabled by default, but can be enabled in your settings. For example:
{
"languages": {
"Python": {
"language_servers": {
"language_servers": [
// Disable basedpyright and enable Ty, and otherwise
// use the default configuration.
"ty", "!basedpyright", ".."
}
"ty",
"!basedpyright",
"..."
]
}
}
}