Skip to content

Commit 68cc4e8

Browse files
authored
fix: ensure 'base' conda environment is not in a group (#290)
1 parent e5052d9 commit 68cc4e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/managers/conda/condaUtils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ function getNamedCondaPythonInfo(
288288
shellActivation,
289289
shellDeactivation,
290290
},
291-
group: 'Named',
291+
group: name !== 'base' ? 'Named' : undefined,
292292
};
293293
}
294294

0 commit comments

Comments
 (0)