Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/client/pythonEnvironments/info/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export function getEnvironmentTypeName(environmentType: EnvironmentType): string
return 'conda';
}
case EnvironmentType.Pipenv: {
return 'pipenv';
return 'Pipenv';
}
case EnvironmentType.Pyenv: {
return 'pyenv';
Expand All @@ -110,16 +110,16 @@ export function getEnvironmentTypeName(environmentType: EnvironmentType): string
return 'virtualenv';
}
case EnvironmentType.MicrosoftStore: {
return 'microsoft store';
return 'Microsoft Store';
}
case EnvironmentType.Poetry: {
return 'poetry';
return 'Poetry';
}
case EnvironmentType.VirtualEnvWrapper: {
return 'virtualenvwrapper';
}
case EnvironmentType.ActiveState: {
return 'activestate';
return 'ActiveState';
}
default: {
return '';
Expand Down