From 532380846f72597545e13443976ef11e1ccaaf2f Mon Sep 17 00:00:00 2001 From: Nikita <190351315+riseandignite@users.noreply.github.com> Date: Tue, 4 Mar 2025 00:10:42 +0800 Subject: [PATCH] chore: Remove debug console.log statements --- packages/nodes-base/nodes/Code/PythonSandbox.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/nodes-base/nodes/Code/PythonSandbox.ts b/packages/nodes-base/nodes/Code/PythonSandbox.ts index 7b6dfc0299..731ffc2c71 100644 --- a/packages/nodes-base/nodes/Code/PythonSandbox.ts +++ b/packages/nodes-base/nodes/Code/PythonSandbox.ts @@ -55,7 +55,6 @@ export class PythonSandbox extends Sandbox { private async runCodeInPython() { const workerFilePath = await this.createWorkerFile(); - console.log(workerFilePath); try { return await this.executePythonInWorker(workerFilePath);