From 99ee2cecfc8a45b7ee51d4d6786da3bd561ef238 Mon Sep 17 00:00:00 2001 From: Anthony Kim <62267334+anthonykim1@users.noreply.github.com> Date: Tue, 10 Oct 2023 01:18:00 -0700 Subject: [PATCH] Update src/client/terminals/codeExecution/helper.ts Co-authored-by: Karthik Nadig --- src/client/terminals/codeExecution/helper.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/client/terminals/codeExecution/helper.ts b/src/client/terminals/codeExecution/helper.ts index 0a2941cbbb34..c560de9c17b7 100644 --- a/src/client/terminals/codeExecution/helper.ts +++ b/src/client/terminals/codeExecution/helper.ts @@ -89,9 +89,7 @@ export class CodeExecutionHelper implements ICodeExecutionHelper { const startLineVal = activeEditor?.selection?.start.line ?? 0; const endLineVal = activeEditor?.selection?.end.line ?? 0; const emptyHighlightVal = activeEditor?.selection?.isEmpty ?? true; - const smartSendExperimentEnabledVal = pythonSmartSendEnabled(this.serviceContainer) - ? pythonSmartSendEnabled(this.serviceContainer) - : false; + const smartSendExperimentEnabledVal = pythonSmartSendEnabled(this.serviceContainer); const input = JSON.stringify({ code, wholeFileContent,