Skip to content

Commit 49e4242

Browse files
Bug in create venv flow with selecting skipping package installation (#928)
fixes #930 --------- Co-authored-by: Aaron Munger <2019016+amunger@users.noreply.github.com>
1 parent 72f4aa8 commit 49e4242

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/managers/builtin/pipUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ async function selectWorkspaceOrCommon(
129129
return await selectFromCommonPackagesToInstall(common, installed, undefined, { showBackButton });
130130
} else if (selected.label === PackageManagement.skipPackageInstallation) {
131131
traceInfo('Package Installer: user selected skip package installation');
132-
return undefined;
132+
return { install: [], uninstall: [] } satisfies PipPackages;
133133
} else {
134134
return undefined;
135135
}

0 commit comments

Comments
 (0)