Skip to content

Commit 25751db

Browse files
Kartik Rajkarthiknadig
authored andcommitted
And?
1 parent 95ac2e4 commit 25751db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/pythonEnvironments/base/locators/composite/environmentsReducer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ function resolveEnvCollision(oldEnv: PythonEnvInfo, newEnv: PythonEnvInfo): Pyth
129129
function sortEnvInfoByPriority(...envs: PythonEnvInfo[]): PythonEnvInfo[] {
130130
// tslint:disable-next-line: no-suspicious-comment
131131
// TODO: When we consolidate the PythonEnvKind and EnvironmentType we should have
132-
// one location where we define priority and
132+
// one location where we define priority.
133133
const envKindByPriority: PythonEnvKind[] = getPrioritizedEnvironmentKind();
134134
return envs.sort(
135135
(a: PythonEnvInfo, b: PythonEnvInfo) => envKindByPriority.indexOf(a.kind) - envKindByPriority.indexOf(b.kind),

0 commit comments

Comments
 (0)