We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06bf33d commit 8bdd966Copy full SHA for 8bdd966
src/client/interpreter/configuration/interpreterSelector/commands/setInterpreter.ts
@@ -334,7 +334,9 @@ export class SetInterpreterCommand extends BaseInterpreterSelectorCommand {
334
item.interpreter.path === 'python' &&
335
item.interpreter.envType === EnvironmentType.Conda
336
) {
337
- items[i].label = `${Octicons.Warning} ${items[i].label}`;
+ if (!items[i].label.includes(Octicons.Warning)) {
338
+ items[i].label = `${Octicons.Warning} ${items[i].label}`;
339
+ }
340
}
341
});
342
0 commit comments