Skip to content

Commit

Permalink
Correct display name for env kinds
Browse files Browse the repository at this point in the history
  • Loading branch information
Kartik Raj committed Sep 28, 2023
1 parent f577ce6 commit df8e4fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/client/pythonEnvironments/base/info/envKind.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ export function getKindDisplayName(kind: PythonEnvKind): string {
for (const [candidate, value] of [
// Note that Unknown is excluded here.
[PythonEnvKind.System, 'system'],
[PythonEnvKind.MicrosoftStore, 'microsoft store'],
[PythonEnvKind.MicrosoftStore, 'Microsoft Store'],
[PythonEnvKind.Pyenv, 'pyenv'],
[PythonEnvKind.Poetry, 'poetry'],
[PythonEnvKind.Poetry, 'Poetry'],
[PythonEnvKind.Custom, 'custom'],
// For now we treat OtherGlobal like Unknown.
[PythonEnvKind.Venv, 'venv'],
[PythonEnvKind.VirtualEnv, 'virtualenv'],
[PythonEnvKind.VirtualEnvWrapper, 'virtualenv'],
[PythonEnvKind.Pipenv, 'pipenv'],
[PythonEnvKind.Pipenv, 'Pipenv'],
[PythonEnvKind.Conda, 'conda'],
[PythonEnvKind.ActiveState, 'ActiveState'],
// For now we treat OtherVirtual like Unknown.
Expand Down

0 comments on commit df8e4fe

Please sign in to comment.