Skip to content

Commit

Permalink
Align env type capitalization with tool recommendation (microsoft#22103)
Browse files Browse the repository at this point in the history
Maybe it should also be Poetry? 🤷 

Fixes microsoft#22094
  • Loading branch information
Tyriar authored Sep 28, 2023
1 parent 2579b15 commit f577ce6
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit f577ce6

Please sign in to comment.