Skip to content

Commit f577ce6

Browse files
authored
Align env type capitalization with tool recommendation (#22103)
Maybe it should also be Poetry? 🤷 Fixes #22094
1 parent 2579b15 commit f577ce6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • src/client/pythonEnvironments/info

src/client/pythonEnvironments/info/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export function getEnvironmentTypeName(environmentType: EnvironmentType): string
9898
return 'conda';
9999
}
100100
case EnvironmentType.Pipenv: {
101-
return 'pipenv';
101+
return 'Pipenv';
102102
}
103103
case EnvironmentType.Pyenv: {
104104
return 'pyenv';
@@ -110,16 +110,16 @@ export function getEnvironmentTypeName(environmentType: EnvironmentType): string
110110
return 'virtualenv';
111111
}
112112
case EnvironmentType.MicrosoftStore: {
113-
return 'microsoft store';
113+
return 'Microsoft Store';
114114
}
115115
case EnvironmentType.Poetry: {
116-
return 'poetry';
116+
return 'Poetry';
117117
}
118118
case EnvironmentType.VirtualEnvWrapper: {
119119
return 'virtualenvwrapper';
120120
}
121121
case EnvironmentType.ActiveState: {
122-
return 'activestate';
122+
return 'ActiveState';
123123
}
124124
default: {
125125
return '';

0 commit comments

Comments
 (0)