Skip to content

Commit 99ee2ce

Browse files
Update src/client/terminals/codeExecution/helper.ts
Co-authored-by: Karthik Nadig <[email protected]>
1 parent 004dab2 commit 99ee2ce

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/client/terminals/codeExecution/helper.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,7 @@ export class CodeExecutionHelper implements ICodeExecutionHelper {
8989
const startLineVal = activeEditor?.selection?.start.line ?? 0;
9090
const endLineVal = activeEditor?.selection?.end.line ?? 0;
9191
const emptyHighlightVal = activeEditor?.selection?.isEmpty ?? true;
92-
const smartSendExperimentEnabledVal = pythonSmartSendEnabled(this.serviceContainer)
93-
? pythonSmartSendEnabled(this.serviceContainer)
94-
: false;
92+
const smartSendExperimentEnabledVal = pythonSmartSendEnabled(this.serviceContainer);
9593
const input = JSON.stringify({
9694
code,
9795
wholeFileContent,

0 commit comments

Comments
 (0)