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

Jaeyong Sung and Marshall Bowers created

Release Notes:

- N/A

---------

Co-authored-by: Marshall Bowers <git@maxdeviant.com>

Change summary

docs/src/languages/python.md | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)

Detailed changes

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",
+        "..."
+      ]
     }
   }
 }