Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
brianignacio5 committed Jan 15, 2025
1 parent f4a11af commit 2329d62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pythonManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ export async function getPythonEnvPath(
: ["bin", "python"];
const fullIdfPyEnvPath = join(idfPyEnvPath, ...pyDir);
const pyEnvPathExists = await pathExists(fullIdfPyEnvPath);
return pyEnvPathExists ? fullIdfPyEnvPath: "";
return pyEnvPathExists ? fullIdfPyEnvPath : "";
}

export async function checkPythonExists(pythonBin: string, workingDir: string) {
Expand Down

0 comments on commit 2329d62

Please sign in to comment.