Remove unused var

This commit is contained in:
Reinier Criel 2025-10-28 15:44:36 -07:00
parent a17e14c988
commit 86ce7ac45e

View file

@ -9,7 +9,7 @@ export async function runPip(command, args) {
// If the user already provided --cert, respect their choice and do not override.
// Support both "--cert <path>" and "--cert=<path>" forms.
const hasUserCert = args.some((a, i) => {
const hasUserCert = args.some((a) => {
if (a === "--cert") return true;
return typeof a === "string" && a.startsWith("--cert=");
});