We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f577ce6 commit e87a83cCopy full SHA for e87a83c
1 file changed
src/client/pythonEnvironments/base/info/envKind.ts
@@ -12,15 +12,15 @@ export function getKindDisplayName(kind: PythonEnvKind): string {
12
for (const [candidate, value] of [
13
// Note that Unknown is excluded here.
14
[PythonEnvKind.System, 'system'],
15
- [PythonEnvKind.MicrosoftStore, 'microsoft store'],
+ [PythonEnvKind.MicrosoftStore, 'Microsoft Store'],
16
[PythonEnvKind.Pyenv, 'pyenv'],
17
- [PythonEnvKind.Poetry, 'poetry'],
+ [PythonEnvKind.Poetry, 'Poetry'],
18
[PythonEnvKind.Custom, 'custom'],
19
// For now we treat OtherGlobal like Unknown.
20
[PythonEnvKind.Venv, 'venv'],
21
[PythonEnvKind.VirtualEnv, 'virtualenv'],
22
[PythonEnvKind.VirtualEnvWrapper, 'virtualenv'],
23
- [PythonEnvKind.Pipenv, 'pipenv'],
+ [PythonEnvKind.Pipenv, 'Pipenv'],
24
[PythonEnvKind.Conda, 'conda'],
25
[PythonEnvKind.ActiveState, 'ActiveState'],
26
// For now we treat OtherVirtual like Unknown.
0 commit comments