docs: Update basedpyright settings examples (#42497)

CnsMaple created

The
[example](https://docs.basedpyright.com/latest/configuration/language-server-settings/#zed)
on the official website of basedpyright is correct.

Release Notes:

- Update basedpyright settings examples

Change summary

docs/src/languages/python.md | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)

Detailed changes

docs/src/languages/python.md 🔗

@@ -128,9 +128,11 @@ You can use the following configuration:
   "lsp": {
     "basedpyright": {
       "settings": {
-        "analysis": {
+        "basedpyright.analysis": {
           "diagnosticMode": "workspace",
-          "inlayHints.callArgumentNames": false
+          "inlayHints": {
+            "callArgumentNames": false
+          }
         }
       }
     }