We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a6761d commit 3064463Copy full SHA for 3064463
1 file changed
src/test/common.ts
@@ -79,7 +79,7 @@ export async function updateSetting(
79
configTarget: ConfigurationTarget
80
) {
81
const vscode = require('vscode') as typeof import('vscode');
82
- const settings = vscode.workspace.getConfiguration('python', resource || null);
+ const settings = vscode.workspace.getConfiguration('python', { uri: resource, languageId: 'python' } || null);
83
const currentValue = settings.inspect(setting);
84
if (
85
currentValue !== undefined &&
0 commit comments