From 1ef2bbbb022717af54b0b29e6bb6415977332594 Mon Sep 17 00:00:00 2001 From: Eric Traut Date: Thu, 16 Dec 2021 21:34:17 -0800 Subject: [PATCH] Fixed error in pyrightconfig JSON schema, which duplicated a couple of IDs. --- packages/vscode-pyright/schemas/pyrightconfig.schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/vscode-pyright/schemas/pyrightconfig.schema.json b/packages/vscode-pyright/schemas/pyrightconfig.schema.json index ec3589b99..8df40b7ed 100644 --- a/packages/vscode-pyright/schemas/pyrightconfig.schema.json +++ b/packages/vscode-pyright/schemas/pyrightconfig.schema.json @@ -542,7 +542,7 @@ } }, "pythonVersion": { - "$id": "#/properties/pythonVersion", + "$id": "#/properties/executionEnvironments/items/properties/pythonVersion", "type": "string", "title": "Python version to assume during type analysis", "default": "", @@ -552,7 +552,7 @@ "pattern": "^3\\.[0-9]+$" }, "pythonPlatform": { - "$id": "#/properties/pythonPlatform", + "$id": "#/properties/executionEnvironments/items/properties/pythonPlatform", "type": "string", "title": "Python platform to assume during type analysis", "default": "",