Skip to content

Commit 34ef50d

Browse files
author
Kartik Raj
committed
And?
1 parent d99acd7 commit 34ef50d

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
@@ -130,7 +130,7 @@ function resolveEnvCollision(oldEnv: PythonEnvInfo, newEnv: PythonEnvInfo): Pyth
130130
function sortEnvInfoByPriority(...envs: PythonEnvInfo[]): PythonEnvInfo[] {
131131
// tslint:disable-next-line: no-suspicious-comment
132132
// TODO: When we consolidate the PythonEnvKind and EnvironmentType we should have
133-
// one location where we define priority and
133+
// one location where we define priority.
134134
const envKindByPriority: PythonEnvKind[] = getPrioritizedEnvironmentKind();
135135
return envs.sort(
136136
(a: PythonEnvInfo, b: PythonEnvInfo) => envKindByPriority.indexOf(a.kind) - envKindByPriority.indexOf(b.kind),

0 commit comments

Comments
 (0)