From 2329d62d1de8502f19796fc43ce7db9b679c43e8 Mon Sep 17 00:00:00 2001 From: Brian Ignacio Date: Wed, 15 Jan 2025 19:19:57 +0800 Subject: [PATCH] fix lint --- src/pythonManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pythonManager.ts b/src/pythonManager.ts index 1e4bc7adc..0dad0fb52 100644 --- a/src/pythonManager.ts +++ b/src/pythonManager.ts @@ -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) {