File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
src/client/pythonEnvironments/base Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,9 @@ export const NOOP_ITERATOR: IPythonEnvsIterator = iterEmpty<PythonEnvInfo>();
74
74
* This is directly correlated with the `BasicPythonEnvsChangedEvent`
75
75
* emitted by watchers.
76
76
*
77
- * @prop kinds - if provided, results should be limited to these env kinds
77
+ * @prop kinds - if provided, results should be limited to these env
78
+ * kinds; if not provided, the kind of each evnironment
79
+ * is not considered when filtering
78
80
*/
79
81
export type BasicPythonLocatorQuery = {
80
82
kinds ?: PythonEnvKind [ ] ;
@@ -88,7 +90,8 @@ export type BasicPythonLocatorQuery = {
88
90
*
89
91
* @prop - searchLocations - if provided, results should be limited to
90
92
* within these locations; `null` means "include envs that have
91
- * no search location"
93
+ * no search location"; if not provided, the search location
94
+ * of each enviroment is not considered when filtering
92
95
*/
93
96
export type PythonLocatorQuery = BasicPythonLocatorQuery & {
94
97
searchLocations ?: ( Uri | null ) [ ] | null ;
You can’t perform that action at this time.
0 commit comments