From 6b8ed5bf28e1cacd0f72319adbc589065849ac93 Mon Sep 17 00:00:00 2001 From: Jaeyong Sung Date: Fri, 19 Sep 2025 03:46:26 +0900 Subject: [PATCH] docs: Fix typo in Python configuration example (#38434) Release Notes: - N/A --------- Co-authored-by: Marshall Bowers --- docs/src/languages/python.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/src/languages/python.md b/docs/src/languages/python.md index f4960bc8e8d3643bab6310020ab7d7834a6a85b3..faca1185768d09b5dcb6e485c146b0e1973cf870 100644 --- a/docs/src/languages/python.md +++ b/docs/src/languages/python.md @@ -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", + "..." + ] } } }